tldr/pages/linux/nm.md

20 lines
322 B
Markdown
Raw Normal View History

2015-12-31 21:21:42 +00:00
# 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 file
`nm -u {{file.o}}`
- List all symbols, even debugging symbols
`nm -a {{file.o}}`