- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: dld.sl, aCC
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
01-24-2002 09:31 AM
01-24-2002 09:31 AM
dld.sl, aCC
/usr/lib/dld.sl: Can't open shared library: ../exe/libodbcinst.sl
/usr/lib/dld.sl: No such file or directory
It is true that /exe/libodbcinst.sl does not exist, and I wonder why. Also, I found a version of libodbcinst.sl and placed it in a newly created /usr/exe directory, but to no avail. Even after re-comiling I get the same message. Am I missing something here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 09:36 AM
01-24-2002 09:36 AM
Re: dld.sl, aCC
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 09:44 AM
01-24-2002 09:44 AM
Re: dld.sl, aCC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 09:54 AM
01-24-2002 09:54 AM
Re: dld.sl, aCC
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 10:02 AM
01-24-2002 10:02 AM
Re: dld.sl, aCC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 10:11 AM
01-24-2002 10:11 AM
Re: dld.sl, aCC
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 01:40 PM
01-24-2002 01:40 PM
Re: dld.sl, aCC
It sounds like you need to further explore the "path" that Harry is suggesting with "SHLIB" and/or "LDPATH". The dynamic loader (dld) has a certain algorithm to finding shared libraries, depending on the options given to the linker when the executable is built (and also depending on whether you're on a PA_RISC 1.x (32bit) processor or PA_RISC 2.0 (64bit)).
In general, I would first try setting the environment variable SHLIB_PATH to point to the absolute path that the shared library in question is located in ("/usr/exe", in this case):
export SHLIB_PATH=/usr/exe
Try running the exe again. You might find the "ldd" command to come in handy; try doing /usr/ccs/bin/ldd (exe-name). It will tell you what dynamic libraries are required by the executable and where those libraries will be found at run-time.
References:
- look at the man page for "dld.sl"
- If that doesn't tell you enough about the dynamic loader and shared libraries, check out "HP-UX Linker and Libraries User's Guide".
While it's probably on HP's website, it's probably right there on your system since aCC is installed. On my system it's at:
/usr/share/html/C/linker/linkhelp.html
It's a beastly document, but there's a wealth of information in there. The Table of Contents is at the end (in my copy at least) =)
Hope this helps -
- Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 08:41 AM
01-28-2002 08:41 AM