- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: aCC compile failed: could not open source file...
Operating System - HP-UX
1820040
Members
3323
Online
109608
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-26-2011 05:20 PM
тАО02-26-2011 05:20 PM
I want to compiple a plugin program with aCC compiler. But always failed and reported "could not open source file "ocidfn.h"". Actually I checked the "/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/demo" directly, the file is exist and the Makefile has included the directory. Please help to find the root cause. Thanks a lot.
The following lists the compile information:
/opt/aCC/bin/aCC -I. -I/usr/opt/temip/tsm/dev/include -I/usr/opt/temip/tfc/include -I/usr/opt/temip/mmtoolkit/include -I/usr/opt/temip/acloc/include -I/usr/opt/temip/ocs/include -I/usr/opt/temip/tal/include -I -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/demo -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/public -I/usr/ORACLE/u01/app/oracle/product/9.2.0/plsql/public -I/usr/ORACLE/u01/app/oracle/product/9.2.0/xdk/include -mt -D__64BIT__ +DD64 +Z -AA +W67 +inst_compiletime -DPTHREAD_COMPAT_MODE -mt -D_POSIX_PTHREAD_SEMANTICS -DSS_64BIT_SERVER +O2 -DPLATFORM_HPUX -DPLATFORM_HPUX_B_11_23 -D_RWCONFIG_m -D__HPACC_USING_MULTIPLIES_IN_FUNCTIONAL -D_RWSTD_MULTI_THREAD -c tuple.cxx -o tuple.o
"/usr/opt/temip/tfc/include/rw/tools/cstring.h", line 511: warning #2550-D:
parameter "mw" was set but never used
static size_t maxWaste(size_t mw = 15)
^
"/usr/opt/temip/tfc/include/rw/tools/cstring.h", line 835: warning #2550-D:
parameter "cap" was set but never used
RWCString::assumeBuffer(size_t cap, size_t len, char* buf)
^
"/usr/opt/temip/tsm/dev/include/nfc/DBConnection.hxx", line 38: error #2005:
could not open source file "ocidfn.h"
#include
The following lists the compile information:
/opt/aCC/bin/aCC -I. -I/usr/opt/temip/tsm/dev/include -I/usr/opt/temip/tfc/include -I/usr/opt/temip/mmtoolkit/include -I/usr/opt/temip/acloc/include -I/usr/opt/temip/ocs/include -I/usr/opt/temip/tal/include -I -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/demo -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/public -I/usr/ORACLE/u01/app/oracle/product/9.2.0/plsql/public -I/usr/ORACLE/u01/app/oracle/product/9.2.0/xdk/include -mt -D__64BIT__ +DD64 +Z -AA +W67 +inst_compiletime -DPTHREAD_COMPAT_MODE -mt -D_POSIX_PTHREAD_SEMANTICS -DSS_64BIT_SERVER +O2 -DPLATFORM_HPUX -DPLATFORM_HPUX_B_11_23 -D_RWCONFIG_m -D__HPACC_USING_MULTIPLIES_IN_FUNCTIONAL -D_RWSTD_MULTI_THREAD -c tuple.cxx -o tuple.o
"/usr/opt/temip/tfc/include/rw/tools/cstring.h", line 511: warning #2550-D:
parameter "mw" was set but never used
static size_t maxWaste(size_t mw = 15)
^
"/usr/opt/temip/tfc/include/rw/tools/cstring.h", line 835: warning #2550-D:
parameter "cap" was set but never used
RWCString::assumeBuffer(size_t cap, size_t len, char* buf)
^
"/usr/opt/temip/tsm/dev/include/nfc/DBConnection.hxx", line 38: error #2005:
could not open source file "ocidfn.h"
#include
Solved! Go to Solution.
- Tags:
- include
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-26-2011 11:03 PM
тАО02-26-2011 11:03 PM
Solution
>the file is exist and the Makefile has included the directory.
>-I -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/demo
Not really. The first invalid -I causes the second to be ignored.
>+inst_compiletime
This is the default, you should remove it.
>-D__HPACC_USING_MULTIPLIES_IN_FUNCTIONAL
You don't need this with -AA.
>-I -I/usr/ORACLE/u01/app/oracle/product/9.2.0/rdbms/demo
Not really. The first invalid -I causes the second to be ignored.
>+inst_compiletime
This is the default, you should remove it.
>-D__HPACC_USING_MULTIPLIES_IN_FUNCTIONAL
You don't need this with -AA.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2011 05:01 PM
тАО02-27-2011 05:01 PM
Re: aCC compile failed: could not open source file "ocidfn.h"
I have corrected it and now have compiled successfully. Thanks a lot.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP