- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (cod...
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
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
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
тАО06-10-2003 04:40 AM
тАО06-10-2003 04:40 AM
/usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
Apache, Informix and SSL were compiled with ANSI C, on 11.11 64bit box. Compiles seemed flawless, however, when I try to start Apache, I received the above error in the error.log.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 04:43 AM
тАО06-10-2003 04:43 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
Using HP C-ANSI-C to compile, add -L/your/path/to/gcc/lib -lgcc
I know that this realy stinks, but I've found no better solution (yet). Get libgcc out of any valid (and architecture compliant) gcc port.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 06:50 AM
тАО06-10-2003 06:50 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
export CC="cc -v -DEAPI -L/usr/local/lib/gcc-lib/hppa2.0n-hp-hpux11.00/3.2.3/libgcc.a"
then I ran "make", and
then I ran "make install".......same issue
Did I do this right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 06:56 AM
тАО06-10-2003 06:56 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
export CC="cc -v -DEAPI -L/usr/local/lib/gcc-lib/hppa2.0n-hp-hpux11.00/3.2.3 -lgcc"
and now?
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 07:43 AM
тАО06-10-2003 07:43 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
{root@btsud4:/opt/apache/bin} ./apachectl start
./apachectl[71]: 24515 Abort(coredump)
./apachectl start: httpd could not be started
{root@btsud4:/opt/apache/logs} more error_log
/usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
pto.sl.0.9.7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 12:05 PM
тАО06-10-2003 12:05 PM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
You maybe have problem with the depend of
your binary files that you compiled with
the gcc.
When you compiled the bin files and libs
compiler write the lib depend of the file
in some libs of him (gcc),
but when you run the aplication she use
wrong lib file.
Check your SHLIB_PATH enviroment and see
you there is your gcc lib path in,
and maybe in the wright order, that it
find the wright lib in the first!
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2003 12:34 PM
тАО06-10-2003 12:34 PM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
Check what you have first:
what /usr/lib/libdld.sl
Elena.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-11-2003 08:54 AM
тАО06-11-2003 08:54 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
Tried moving my /usr/local/lib as the first library in the SHLIB_PATH. This did not help. I also tried to reference the same directory in my Apache configuration.tmpl file. STILL NOT WORKING.
I will now try to check out the linker patches.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2003 01:34 AM
тАО06-13-2003 01:34 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
I had the same trouble with PHP compilation.
The fact is that the crypt library is included in HP-UX in another lib (libc), to solve it, you have to change your makefile, and remove the -l crypt to replace by -lc
see this url for the details
http://bugs.php.net/bug.php?id=19918
hope it may help..
Benoit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2003 05:48 AM
тАО06-13-2003 05:48 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
/usr/local/lib/gcc-lib/hppa2.0n-hp-hpux11.00/3.2.3/
in your SHLIB_PATH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2003 11:20 AM
тАО06-13-2003 11:20 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2003 11:57 AM
тАО06-13-2003 11:57 AM
Re: /usr/lib/dld.sl: Unresolved symbol: __umoddi3 (code) from /usr/local/lib/libcry
PHSS_24303 or the most recent one PHSS_28434 if you do not have any of these.