1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 16:13:31 +02:00

Sorry for the messup. Unmutilated nm pages

This commit is contained in:
Ruben Vereecken 2016-01-13 18:40:58 +01:00
parent 71d1363ce8
commit 14993dfe0e
2 changed files with 7 additions and 7 deletions

View file

@ -2,18 +2,18 @@
> List symbol names in object files.
- List global (extern) functions in a file (prefixed with T:
- List global (extern) functions in a file (prefixed with T):
`nm -g {{file.o}}`
- Demangle C++ symbols (make them readable:
- Demangle C++ symbols (make them readable):
`nm --demangle {{file.o}}`
- List only undefined symbols in a fil:
- List only undefined symbols in a file:
`nm -u {{file.o}}`
- List all symbols, even debugging symbol:
- List all symbols, even debugging symbols:
`nm -a {{file.o}}`

View file

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