How do I determine whether a function exists within a library, or list out the functions in a compiled library?
|
You can use the nm command to list the symbols in static libraries.
|
|||
|
|
|
Under Linux/Unix you can use EDIT: after seeing codelogic's anwser I remembered that objdump also understands -C to perform de-mangling. |
|||
|
|
|
For ELF binaries, you can use readelf:
The awk command will then filter out all functions, and c++filt will unmangle them. That means it will convert them from an internal naming scheme so they are displayed in human readable form. It outputs names similar to this (taken from boost.filesystem lib):
Without c++filt, the name is displayed as |
||||
|
|
|
For Microsoft tools, " |
||||
|
|
|
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 get, and you will be able to sort out the functions from variables and stuff. |
|||
|
|