2015-12-31 21:21:42 +00:00
|
|
|
# nm
|
|
|
|
|
2017-11-29 06:48:53 +00:00
|
|
|
> List symbol names in object files.
|
2015-12-31 21:21:42 +00:00
|
|
|
|
2016-01-13 17:40:58 +00:00
|
|
|
- List global (extern) functions in a file (prefixed with T):
|
2015-12-31 21:21:42 +00:00
|
|
|
|
|
|
|
`nm -g {{file.o}}`
|
|
|
|
|
2016-01-13 17:40:58 +00:00
|
|
|
- List only undefined symbols in a file:
|
2015-12-31 21:21:42 +00:00
|
|
|
|
|
|
|
`nm -u {{file.o}}`
|
|
|
|
|
2016-01-13 17:40:58 +00:00
|
|
|
- List all symbols, even debugging symbols:
|
2015-12-31 21:21:42 +00:00
|
|
|
|
|
|
|
`nm -a {{file.o}}`
|
2017-11-29 06:48:53 +00:00
|
|
|
|
2019-09-20 15:02:39 +01:00
|
|
|
- Demangle C++ symbols (make them readable):
|
2017-11-29 06:48:53 +00:00
|
|
|
|
2019-09-20 15:02:39 +01:00
|
|
|
`nm -demangle {{file.o}}`
|