1
0
Fork 0
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:
Waldir Pimenta 2019-09-20 15:02:39 +01:00 committed by Agniva De Sarker
parent c8ee465c2f
commit 66dd8e6acc
2 changed files with 6 additions and 6 deletions

View file

@ -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}}`

View file

@ -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}}`