Merge pull request #661 from rubenvereecken/fix-nm

Fix nm syntax
waldyrious/alt-syntax
Ruben Vereecken 2016-01-13 15:55:06 +01:00
commit 54bbc41da8
2 changed files with 9 additions and 9 deletions

View File

@ -1,19 +1,19 @@
# 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}}`
- Demangle C++ symbols (make them readable)
- Demangle C++ symbols (make them readable:
`nm --demangle {{file.o}}`
- List only undefined symbols in a file
- List only undefined symbols in a fil:
`nm -u {{file.o}}`
- List all symbols, even debugging symbols
- List all symbols, even debugging symbol:
`nm -a {{file.o}}`

View File

@ -1,15 +1,15 @@
# 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}}`
- List only undefined symbols in a file
- List only undefined symbols in a fil:
`nm -u {{file.o}}`
- List all symbols, even debugging symbols
- List all symbols, even debugging symbol:
`nm -a {{file.o}}`