Skip to content

Latest commit

History

History
19 lines (10 loc) 路 327 Bytes

nm.md

File metadata and controls

19 lines (10 loc) 路 327 Bytes

nm

List symbol names in object files.

  • List global (extern) functions in a file (prefixed with T):

nm -g {{file.o}}

  • List only undefined symbols in a file:

nm -u {{file.o}}

  • List all symbols, even debugging symbols:

nm -a {{file.o}}

  • Demangle C++ symbols (make them readable):

nm --demangle {{file.o}}