Operating System - HP-UX
1834707 Members
2564 Online
110069 Solutions
New Discussion

Re: /usr/lib/dld.sl unresolved symbol:inet_ntop (code)

 
simons_4
Occasional Contributor

/usr/lib/dld.sl unresolved symbol:inet_ntop (code)

Hi,

how to find the library that provides the function inet_ntop()??? Is there any way??

Thank you

Simon
2 REPLIES 2
Steven E. Protter
Exalted Contributor

Re: /usr/lib/dld.sl unresolved symbol:inet_ntop (code)

Shalom,

There is a command called chatr

It will identify the libraries needed by a binary.

But that seems the reverse of what you need.

I'm wondering what language you are using, not much detail in your post.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Dennis Handly
Acclaimed Contributor

Re: /usr/lib/dld.sl unresolved symbol:inet_ntop (code)

A simple search in /usr/lib/:
$ nm -pxAN /usr/lib/lib* | fgrep inet_ntop

This seems to find libc. This seems kind of hard to believe if you linked your application with a shared libc.