2015-12-31 22:21:42 +01:00
|
|
|
# nm
|
|
|
|
|
2016-01-13 15:54:31 +01:00
|
|
|
> List symbol names in object files.
|
2015-12-31 22:21:42 +01:00
|
|
|
|
2016-01-13 18:40:58 +01:00
|
|
|
- List global (extern) functions in a file (prefixed with T):
|
2015-12-31 22:21:42 +01:00
|
|
|
|
|
|
|
`nm -g {{file.o}}`
|
|
|
|
|
2016-01-13 18:40:58 +01:00
|
|
|
- Demangle C++ symbols (make them readable):
|
2015-12-31 22:21:42 +01:00
|
|
|
|
|
|
|
`nm --demangle {{file.o}}`
|
|
|
|
|
2016-01-13 18:40:58 +01:00
|
|
|
- List only undefined symbols in a file:
|
2015-12-31 22:21:42 +01:00
|
|
|
|
|
|
|
`nm -u {{file.o}}`
|
|
|
|
|
2016-01-13 18:40:58 +01:00
|
|
|
- List all symbols, even debugging symbols:
|
2015-12-31 22:21:42 +01:00
|
|
|
|
|
|
|
`nm -a {{file.o}}`
|