Top "Ldd" questions

for an executable or shared library.

Tool for Library Dependency

I'm looking for the tool/command on Unix platform to detect the library dependencies of the .so and .o files. …

unix shared-libraries solaris ldd nm
Understanding ldd output

How does ldd knows it's depending on libc.so.6 ,not libc.so.5 or libc.so.7? libc.so.6 => /lib64/libc.…

linker ldd
Explanation of ldd output

Can someone explain to me the output of ldd command? In the following example (on Gentoo system) $ ldd /bin/date …

linux unix shared-libraries ldd
how do I remove `GLIBC_2.27' requirement at compile time?

I've been using a docker image for c++ compilation. It's based on Ubuntu 18.04. When I attempt to run on some …

gcc glibc dynamic-linking ldd
Linking Rust application with a dynamic library not in the runtime linker search path

I have a shared library that I'd like to dynamically link into several separate binary Cargo applications. I include its …

rust dynamic-linking dynamic-library rust-cargo ldd
Executable cannot find dynamically linked mkl library, but ldd does

I have a code which was dynamically linked with the mkl library. when running the code, it reports mkl not …

linker intel-mkl ldd
How are shared library dependency paths determined on Linux?

When I run ldd against a shared library such as libphp5.so I see that it has a dependency on …

linux gcc dependencies shared-libraries ldd
What is the difference between ldd and objdump?

I am running these two commands, and I'm getting different output: $ ldd `which ls` linux-gate.so.1 => (0x00db3000) libselinux.…

linux objdump ldd
Does ldd show all recursive dependencies

Suppose I have a A.so file whose dependencies are found from ldd #ldd A [...] libxml2.so.2 => /usr/lib64/…

unix shared-libraries ldd