tldr/pages/linux/nm.md

20 lines
323 B
Markdown
Raw Normal View History

2016-01-01 00:21:42 +03:00
# nm
2016-01-13 17:54:31 +03:00
> List symbol names in object files.
2016-01-01 00:21:42 +03:00
2016-01-13 17:54:31 +03:00
- List global (extern) functions in a file (prefixed with T:
2016-01-01 00:21:42 +03:00
`nm -g {{file.o}}`
2016-01-13 17:54:31 +03:00
- Demangle C++ symbols (make them readable:
2016-01-01 00:21:42 +03:00
`nm --demangle {{file.o}}`
2016-01-13 17:54:31 +03:00
- List only undefined symbols in a fil:
2016-01-01 00:21:42 +03:00
`nm -u {{file.o}}`
2016-01-13 17:54:31 +03:00
- List all symbols, even debugging symbol:
2016-01-01 00:21:42 +03:00
`nm -a {{file.o}}`