Merge pull request #1709 from ry/patch-1

This commit is contained in:
Starbeamrainbowlabs 2017-11-30 15:16:31 +00:00 committed by GitHub
commit 1fdd0dea24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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