How to List Functions in a Linux Static Library
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 default format can be hard to parse….
