About 450,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. 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. …

  7. Get list of static libraries used in an executable - Stack Overflow

    Jul 14, 2009 · ldd <exe filename> shows dynamically linked libraries nm <exe filename> shows the symbols in the file. To see which symbols come from static libraries requires running nm against …

  8. What is the equivalent of Linux's ldd on windows? [closed]

    Jan 3, 2010 · If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered. Closed 4 years ago. …

  9. Is there a Windows equivalent for the UNIX ldd command?

    Feb 25, 2022 · 1 Besides using Msys2 as suggested in the other answer, you could also use mingw-ldd which can easily be installed with pip install mingw_ldd. However, the command is slightly different to …

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