1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 02:18:01 +01:00
tldr/pages/osx/nm.md

20 lines
306 B
Markdown
Raw Normal View History

2015-12-31 22:21:42 +01:00
# nm
> 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}}`
- 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}}`
- Demangle C++ symbols:
2017-11-29 21:00:36 +01:00
`nm {{file.o}} | c++filt`