1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 00:17:56 +01:00
tldr/pages/osx/nm.md
2017-11-29 15:00:36 -05:00

306 B

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:

nm {{file.o}} | c++filt