About 696,000 results
Open links in new tab
  1. How to show all shared libraries used by executables in Linux?

    Nov 29, 2017 · 'ldd' doesn't work for me on cross-compiled binaries. The question is about finding the libraries used by programs on the current system (that would be native programs, as phrased). This …

  2. linux - Hierarchical ldd (1) - Stack Overflow

    That being said, what ldd does is to get the dynamic linker to do load the executable or library as it usually would, but print out some info along the way. This is a recursive "binary needs library needs …

  3. How to interpret the output of the ldd program? - Stack Overflow

    Dec 23, 2015 · 7 ldd filename shows you the program shared libraries used by the file. libc.so.6, for example, is libc shared object version 6, which sits in /lib64 and its memory location is …

  4. Determine direct shared object dependencies of a Linux binary?

    Jun 5, 2011 · 211 How can I easily find out the direct shared object dependencies of a Linux binary in ELF format? I'm aware of the ldd tool, but that appears to output all dependencies of a binary, …

  5. How to find out the dynamic libraries executables loads when run?

    Feb 20, 2018 · I want to find out the list of dynamic libraries a binary loads when run (With their full paths). I am using CentOS 6.0. How to do this?

  6. ldd does not find path, How to add - Unix & Linux Stack Exchange

    ldd does not find path, How to add Ask Question Asked 9 years, 7 months ago Modified 6 years, 6 months ago

  7. How to list library dependencies of a non-native binary?

    Apr 7, 2012 · The ldd is not a normal binutils utility, like strip or ar, that can be built alongside gcc for cross compiling, but instead, it is a cryptic shell script that apparently can only run on native platform. …

  8. linux - Explanation of ldd output - Stack Overflow

    The most important part of that output is linux-vdso. VDSO stands for Virtual Dynamic Shared Object - it's an way to export kernel space routines to userspace. The main reason is to reduce the system …

  9. Does ldd also show dependencies of dependencies? - Stack Overflow

    Feb 25, 2013 · Since on this system libxml depends dynamically on libicuuc, it makes sense that ldd enventually ends up finding it, but is it expected that libicuuc also appears in the ldd output for A? Is …

  10. linker - Understanding ldd output - Stack Overflow

    May 8, 2013 · Understanding ldd output Asked 14 years, 8 months ago Modified 12 years, 7 months ago Viewed 11k times