ELF Lib Viewer
Normally on linux I just use ldd to list all direct and indirect dependencies of an executable.
objdump -X | grep NEEDED does also a good job in listing all direct dependencies.
On Windows there is a nice tool called Dependency Viewer which lists the dependencies in a tree view, to better see direct and inderect dependencies.
I googled a little bit and found a nice Qt based tool called ELFLibViewer which does the same job for ELF binaries on linux.


Leave a Reply