mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 05:17:58 +01:00
15 lines
267 B
Markdown
15 lines
267 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}}`
|