How to list the functions in a .a library on Linux
Using nm to inspect static library symbols The nm command displays symbolic information from object files, libraries, and executables. It’s the standard tool for inspecting what functions and variables are defined or referenced in a static library (.a file). Basic usage List all symbols in a library: nm lib.a This outputs symbol names, but the…