Operating System - Linux
1752689 Members
5156 Online
108789 Solutions
New Discussion

Re: /usr/lib/dld.sl: Unresolved symbol

 
SOLVED
Go to solution
Arunvijai_4
Honored Contributor

Re: /usr/lib/dld.sl: Unresolved symbol

It may not be an issue, its common if ldd lists nothing, for example,

# ldd /usr/lib/libcurses.sl (lists nothing)

May be you need to compile the code again,

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Stephen Keane
Honored Contributor

Re: /usr/lib/dld.sl: Unresolved symbol

ldd /usr/local/lib/libmb.sl returns nothing...


I was just checking if libmb.sl is itself explicitly linked with any further libraries.

What you need to find out is which library the missing symbol IS defined in.

If you nm libmb.sl you will see it is used by that library and probably not defined in it

# nm /usr/local/lib/libmb.sl | grep "_mFsoloadunload"