- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Issues faced while compiling C++ programs.
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
10-22-2004 06:30 AM
10-22-2004 06:30 AM
Issues faced while compiling C++ programs.
I am getting
"Can't find library or mismatched ABI for -lCsup"
Please help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:48 AM
10-22-2004 08:48 AM
Re: Issues faced while compiling C++ programs.
-Cheers
Govind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:49 AM
10-22-2004 08:49 AM
Re: Issues faced while compiling C++ programs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 09:02 AM
10-22-2004 09:02 AM
Re: Issues faced while compiling C++ programs.
I tried to apply your suggesstion, but i am getting
"ld: Mismatched ABI (not an ELF file) for -lCsup"
Do I have to download the patch. PHSS_30967.
Let me know.
Thanks
Sanjay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 09:59 AM
10-22-2004 09:59 AM
Re: Issues faced while compiling C++ programs.
-Goodluck
Govind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 10:15 AM
10-22-2004 10:15 AM
Re: Issues faced while compiling C++ programs.
This is what I get when run the make command.
aCC +DD64 -D_HPUX_SOURCE +Olit=none +W887 +w +W229 +W331 +W361 +W392 +W431 +W655 +W684 +W818 +W819 +W849 +W889 -D_POSIX_C_SOURCE=199506L -mt -AA -O -Wl,+s +nostl -L/home/smunderg/RogueWave/SourcePro/Ed7/lib -o CAS_payproc_server CAS_payment_process_match.o CAS_payment_process_apply.o CAS_process.o CAS_payproc_server_s.o CAS_payproc_server.o /home/smunderg/RogueWave/SourcePro/Ed7/lib/rwctl12s.o -L/usr/lib/ -L/home/smunderg/RogueWave/SourcePro/Ed7/lib/ -L/tools/sybase/OCS-12_0/lib -L/tools/entera/tcp/lib
ld: Mismatched ABI (not an ELF file) for -lCsup
Please let me know if you find anything fishy...
Thanks
Sanjay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 11:07 PM
10-22-2004 11:07 PM
Re: Issues faced while compiling C++ programs.
you are on an itanium box so you are building IPF binaries. /usr/lib contains only PA32 stuff. IPF libraries are under /usr/lib/hpux32 and /usr/lib/hpux64. under /usr/lib/pa20_64 you have PA64 libraries
you should never have these directories in any of your library lookup paths (which you specify through '-L', LPATH, SHLIB_PATH or LD_LIBRARY_PATH) - you should only include any additional directories where libraries are to be taken from.
the linker and loader will decide where under /usr/lib they have to look, depending on what binaries you are building.
--
ranga