1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 17:17:56 +01:00
tldr/pages/linux/nm.md
2016-01-13 18:49:30 +01:00

327 B

nm

List symbol names in object files.

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

nm -g {{file.o}}

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

nm --demangle {{file.o}}

  • List only undefined symbols in a file:

nm -u {{file.o}}

  • List all symbols, even debugging symbols:

nm -a {{file.o}}