Files
tldr/pages/linux/nm.md
Ruben Vereecken 387f9770df Fix nm syntax
2016-01-13 15:54:31 +01:00

20 lines
323 B
Markdown

# 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 fil:
`nm -u {{file.o}}`
- List all symbols, even debugging symbol:
`nm -a {{file.o}}`