mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 14:15:44 +02:00
Fix nm syntax
This commit is contained in:
parent
3194fb07fe
commit
387f9770df
2 changed files with 9 additions and 9 deletions
|
@ -1,19 +1,19 @@
|
||||||
# nm
|
# nm
|
||||||
|
|
||||||
> List symbol names in object files
|
> 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}}`
|
`nm -g {{file.o}}`
|
||||||
|
|
||||||
- Demangle C++ symbols (make them readable)
|
- Demangle C++ symbols (make them readable:
|
||||||
|
|
||||||
`nm --demangle {{file.o}}`
|
`nm --demangle {{file.o}}`
|
||||||
|
|
||||||
- List only undefined symbols in a file
|
- List only undefined symbols in a fil:
|
||||||
|
|
||||||
`nm -u {{file.o}}`
|
`nm -u {{file.o}}`
|
||||||
|
|
||||||
- List all symbols, even debugging symbols
|
- List all symbols, even debugging symbol:
|
||||||
|
|
||||||
`nm -a {{file.o}}`
|
`nm -a {{file.o}}`
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
# nm
|
# nm
|
||||||
|
|
||||||
> List symbol names in object files (see c++filt)
|
> 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}}`
|
`nm -g {{file.o}}`
|
||||||
|
|
||||||
- List only undefined symbols in a file
|
- List only undefined symbols in a fil:
|
||||||
|
|
||||||
`nm -u {{file.o}}`
|
`nm -u {{file.o}}`
|
||||||
|
|
||||||
- List all symbols, even debugging symbols
|
- List all symbols, even debugging symbol:
|
||||||
|
|
||||||
`nm -a {{file.o}}`
|
`nm -a {{file.o}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue