2
votes
How would you list the available functions etc contained within a compiled library?
use this command:
objdump -t "your-library"
It will print more than you want - not just function names, but the entire symbol table. Check the various attributes of the symbols you …
