tldr/pages/osx/nm.md

16 lines
267 B
Markdown
Raw Normal View History

2015-12-31 21:21:42 +00:00
# nm
2016-01-13 14:54:31 +00:00
> List symbol names in object files (see c++filt).
2015-12-31 21:21:42 +00:00
- List global (extern) functions in a file (prefixed with T):
2015-12-31 21:21:42 +00:00
`nm -g {{file.o}}`
- List only undefined symbols in a file:
2015-12-31 21:21:42 +00:00
`nm -u {{file.o}}`
- List all symbols, even debugging symbols:
2015-12-31 21:21:42 +00:00
`nm -a {{file.o}}`