- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compatibility of bundled C compiler (HP-UX 11.0)
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
08-04-2003 04:41 PM
08-04-2003 04:41 PM
A software verdor gave me an executable code.
When I ran it, I got error messages like
# C_Demo
/usr/lib/dld.sl: Unresolved symbol: __ZStaticCtorTable_Start (data) from /usr/lib/libCsup.2
/usr/lib/dld.sl: Unresolved symbol: __ZStaticCtorTable_End (data) from /usr/lib/libCsup.2
/usr/lib/dld.sl: Unresolved module for symbol: __shlinit (code) from /usr/lib/libCsup.2
Abort(coredump)
# ls
We only has C compiler bundled with HP-UX 11.0.
Does it mean the libraries that we have are not
compatible with those used by the vendor?
Your information is very much appreciated.
Reggie
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 05:09 PM
08-04-2003 05:09 PM
Re: compatibility of bundled C compiler (HP-UX 11.0)
You can download the gcc compiler from HP's software.hp.com website. There are numerous other zero-cost packages at that website. You can also get additional tools from http://hpux.connect.org.uk/
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 12:12 AM
08-05-2003 12:12 AM
Re: compatibility of bundled C compiler (HP-UX 11.0)
If i understand your question, i don't think that the compiler is concerned.
a vendor sold you a binary product which start with errors + core .
These errors from what i can see concerned the dynamic library subsystem (especially the libCsup library).
If it doesn't work on your system, this means that your vendor didn't give you all the prerequisite, or compiled the binary with another level or architecture of the OS. I think it's probably a patch level which is not the same between your host and the vendor's one.
check with the version of this lib to compare !
You should have the ability to run anything whatever developpment tools is installed or not on your host. If you have all the prerequisites.
hope that help,
Benoit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 12:18 AM
08-05-2003 12:18 AM
SolutionTry installing patch PHSS_26945 which will update that library to the latest version. If that doesn't work you'll need to contact the vendor.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 12:47 AM
08-05-2003 12:47 AM
Re: compatibility of bundled C compiler (HP-UX 11.0)
Bill is certainly right about the compiler and the others about the loading.
See http://mailman.cs.uchicago.edu/pipermail/swig/1999-July/000402.html
For a good example
This software is not compatible with your setup
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 06:46 AM
08-05-2003 06:46 AM
Re: compatibility of bundled C compiler (HP-UX 11.0)
Can you check :
#ldd -v C_Demo
This will display where the executable is looking for shlibs. This will display if dld.sl is able to load libCsup.2.
#chatr C_Demo
To see exactly which shlibs are loaded and the executable bits particularities.
#nm -xv /usr/lib/libCsup.2 | grep -i ctortable
This will display if the symbols (for instance ZStaticCtorTable_Start) are there.
Hope this helps, Bye.
Francis - HP-UX ASCE.