- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Compiling problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
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
Community
Resources
Forums
Blogs
- 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
03-08-2002 05:45 PM
03-08-2002 05:45 PM
Compiling problem
We upgrate HP-UX 10.2 to HP-UX 11i, the C complie upgrate from HP C++ to HP aC++, OpenView from 6.1 to 6.2, OV development tool kil from 6.1 to 6.2.
When I compile the file, I got an error: "ld: Mismatched ABI (not an ELF file) for -lovw"
I go to /opt/OV/lib, use command: "file libovw.sl", the result is: "libovw.sl: PA-RISC1.1 shared library"
I use command "file" to see other libray we used in our system, the result is: "ELF-64 shared object file - PA-RISC 2.0 (LP64)"
Please tell me what I can do to fix this problem.
Thanks in advance,
Wendy Huang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2002 06:55 PM
03-08-2002 06:55 PM
Re: Compiling problem
You are probably compiling on a machine that defaults to +DA2.0W architecture. Add either +DA1.1 or +DAportable to the compiler options and recompile your .c's. Man aCC for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 11:45 AM
03-11-2002 11:45 AM
Re: Compiling problem
We do use +DA2.0w mode to complie. Is there anybody know is there any patch for HP OV development tool kit to provide 64-bit library?
Thanks,
Wendy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 11:56 AM
03-11-2002 11:56 AM
Re: Compiling problem
I don't know of a 64-bit version of the library but unless you actually need the 64-bit address space (which would be unusual in an OV application), you can simply compile using +DAportable and your resulting 32-bit code will execute just fine in both the 32-bit and 64-bit worlds.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 12:14 PM
03-11-2002 12:14 PM
Re: Compiling problem
In our case, we need link 64-bit Oracle and other library alone with OV library, does +DAportable work for this case? Currently I chose to use all 32-bit library and with +DA1.0 mode. But I like to know if it is possible to use 64-bit library.
Thanks again,
Wendy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 12:35 PM
03-11-2002 12:35 PM
Re: Compiling problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 01:28 PM
03-11-2002 01:28 PM
Re: Compiling problem
Wendy