Function names extraction from static library

Max picture Max · Apr 26, 2010 · Viewed 21.5k times · Source

I have a static library static_library.a

How to list functions and methods realized there. or at least how to look is there concrete function 'FUNCTION_NAME' realized?

Answer

user283145 picture user283145 · Apr 26, 2010

Write

nm static_library.a

This gives you complete list of symbols in the library.