1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 19:17:57 +01:00
tldr/pages/linux/nm.md

20 lines
327 B
Markdown
Raw Normal View History

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