I’m not sure my question makes sense in a linux way. I’m searching for something that would work similar to dumpbin.exe from Visual Studio toolkit.
Basically I have an existing project with a bunch of libraries and a single executable. I’d like to figure out which libraries are really needed and which function in each library.
I’m using shared objects only since this project targets an ARM device.
maybe you can use ldd and nm. ldd will tell you which shared objects (aka dll in win) are needed. and nm will tell dump the symbols.
example run:
EDIT: forgot about objdump. i.e:
using -x will give you all headers (quite verbose to post, but try it out :))