About 95 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 …

  2. 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?

  3. 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 …

  4. 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 …

  5. 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 …

  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. 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

  8. 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 …

  9. 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 …

  10. ldd says "not found" even though library is in my LD_LIBRARY_PATH

    Aug 14, 2014 · In our case LD_LIBRARY_PATH was correct, ldconfig could find it and the /etc/ld.so.conf.d files were all in place, yet when running debug on the linker it would skip right …