Search code examples
unixextractstatic-libraries

Function names extraction from static library


I have a static library static_library.a

How to list functions and methods implemented in there.
Or at least: how to look if a particular function FUNCTION_NAME is implemented?


Solution

  • Write

    nm static_library.a
    

    This gives you complete list of symbols in the library.