Files
tldr/pages/osx/nm.md
2016-01-06 08:38:46 -07:00

16 lines
263 B
Markdown

# nm
> List symbol names in object files (see c++filt)
- List global (extern) functions in a file (prefixed with T)
`nm -g {{file.o}}`
- List only undefined symbols in a file
`nm -u {{file.o}}`
- List all symbols, even debugging symbols
`nm -a {{file.o}}`