mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
Re-sync nm pages across linux/osx
This commit is contained in:
parent
c8ee465c2f
commit
66dd8e6acc
2 changed files with 6 additions and 6 deletions
|
@ -6,10 +6,6 @@
|
|||
|
||||
`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}}`
|
||||
|
@ -17,3 +13,7 @@
|
|||
- List all symbols, even debugging symbols:
|
||||
|
||||
`nm -a {{file.o}}`
|
||||
|
||||
- Demangle C++ symbols (make them readable):
|
||||
|
||||
`nm --demangle {{file.o}}`
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
|
||||
`nm -a {{file.o}}`
|
||||
|
||||
- Demangle C++ symbols:
|
||||
- Demangle C++ symbols (make them readable):
|
||||
|
||||
`nm {{file.o}} | c++filt`
|
||||
`nm -demangle {{file.o}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue