mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
nm: update page (#7758)
This commit is contained in:
parent
692469016e
commit
b14c67fd89
1 changed files with 5 additions and 4 deletions
|
@ -1,19 +1,20 @@
|
|||
# nm
|
||||
|
||||
> List symbol names in object files.
|
||||
> More information: <https://manned.org/nm>.
|
||||
|
||||
- List global (extern) functions in a file (prefixed with T):
|
||||
|
||||
`nm -g {{file.o}}`
|
||||
`nm -g {{path/to/file.o}}`
|
||||
|
||||
- List only undefined symbols in a file:
|
||||
|
||||
`nm -u {{file.o}}`
|
||||
`nm -u {{path/to/file.o}}`
|
||||
|
||||
- List all symbols, even debugging symbols:
|
||||
|
||||
`nm -a {{file.o}}`
|
||||
`nm -a {{path/to/file.o}}`
|
||||
|
||||
- Demangle C++ symbols (make them readable):
|
||||
|
||||
`nm --demangle {{file.o}}`
|
||||
`nm --demangle {{path/to/file.o}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue