LDD(1) Last changed: 1-7-99
ldd - Shows run-time DSO dependencies
ldd [-D] [-a rldargs] object
IRIX systems
DESCRIPTION:
The runtime dynamic linker loads the object (an executable or DSO) and
all of the libraries reporting what libraries were loaded. But does
not execute the program or DSO.
This is to make it easy to detect what libraries are loaded by an
executable without having to run it.
Options:
-a rldargs
Sets the environment variable _RLD_ARGS to the string rldargs
before executing the runtime linker (rld).
-D Does not on delay-loaded DSOs.
ldd will not report on libraries opened using dlopen(3C).
Unless the -D option is specified, ldd will report on delay-loaded
libraries. If the -D option is not specified, ldd may show messages
other than those it would show during normal execution, since the
order of DSO loading and symbol resolution is necessarily different.
ldd honors the _RLD*_PATH environment variables for use in testing ldd
and rld. If the appropriate _RLD*_PATH is pointing to an rld, not an
rld.debug, ldd will not do anything useful.
There is a -x option used to debug ldd that is not normally useful.
/usr/lib/rld.debug
/usr/lib32/rld.debug
/usr/lib64/rld.debug
/usr/bin/ldd
SEE ALSO:
rld(1), elfdump(1), dlopen(3C), sgidlopen_version(3C), sgidladd(3C),
dso(5), par(1), dbx(1), ld(1)
This man page is available only online.
[ Back ]
|