30

I need a tool to show all the shared library dependencies in some graphical way, not just with ldd on each .so. For MS Windows Dependency Walker works. Is there anything for Linux?

Dependency Walker example screen.

Ashwin Nanjappa
  • 76,204
  • 83
  • 211
  • 292
Rella
  • 65,003
  • 109
  • 363
  • 636
  • 3
    `nm` lists direct and indirect dependencies, but not in tree-format. Alternatively, someone wrote [a perl script](http://www.redhat.com/archives/rhl-list/2007-May/msg01670.html) that parses the ldd output for indirect dependencies. – jweyrich Aug 08 '11 at 06:01

1 Answers1

27

Try binscan or ELF Library Viewer

J-16 SDiZ
  • 26,473
  • 4
  • 65
  • 84