1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-09 13:05:24 +02:00
tldr/pages/common/nm.md

21 lines
475 B
Markdown
Raw Normal View History

2015-12-31 14:21:42 -07:00
# nm
2016-01-13 15:54:31 +01:00
> List symbol names in object files.
2022-02-14 03:43:27 -08:00
> More information: <https://manned.org/nm>.
2015-12-31 14:21:42 -07:00
- List global (extern) functions in a file (prefixed with T):
2015-12-31 14:21:42 -07:00
`nm {{[-g|--extern-only]}} {{path/to/file.o}}`
2015-12-31 14:21:42 -07:00
- List only undefined symbols in a file:
2015-12-31 14:21:42 -07:00
`nm {{[-u|--undefined-only]}} {{path/to/file.o}}`
2015-12-31 14:21:42 -07:00
- List all symbols, even debugging symbols:
2015-12-31 14:21:42 -07:00
`nm {{[-a|--debug-syms]}} {{path/to/file.o}}`
2019-09-20 15:02:39 +01:00
- Demangle C++ symbols (make them readable):
`nm {{[-C|--demangle]}} {{path/to/file.o}}`