mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 16:35:53 +02:00
nm: add page (osx and linux)
This commit is contained in:
parent
b1358283f1
commit
45406a3775
2 changed files with 34 additions and 0 deletions
19
pages/linux/nm.md
Normal file
19
pages/linux/nm.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# nm
|
||||||
|
|
||||||
|
> List symbol names in object files
|
||||||
|
|
||||||
|
- List global (extern) functions in a file (prefixed with T)
|
||||||
|
|
||||||
|
`nm -g {{file.o}}`
|
||||||
|
|
||||||
|
- Demangle C++ symbols (make them readable)
|
||||||
|
|
||||||
|
`nm --demangle {{file.o}}`
|
||||||
|
|
||||||
|
- List only undefined symbols in a file
|
||||||
|
|
||||||
|
`nm -u {{file.o}}`
|
||||||
|
|
||||||
|
- List all symbols, even debugging symbols
|
||||||
|
|
||||||
|
`nm -a {{file.o}}`
|
15
pages/osx/nm.md
Normal file
15
pages/osx/nm.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# 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}}`
|
Loading…
Add table
Reference in a new issue