mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 06:35:24 +02:00
Merge pull request #1709 from ry/patch-1
This commit is contained in:
commit
1fdd0dea24
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# nm
|
||||
|
||||
> List symbol names in object files (see c++filt).
|
||||
> List symbol names in object files.
|
||||
|
||||
- List global (extern) functions in a file (prefixed with T):
|
||||
|
||||
|
@ -13,3 +13,7 @@
|
|||
- List all symbols, even debugging symbols:
|
||||
|
||||
`nm -a {{file.o}}`
|
||||
|
||||
- Demangle C++ symbols:
|
||||
|
||||
`nm {{file.o}} | c++filt`
|
||||
|
|
Loading…
Add table
Reference in a new issue