
nm
List of commands for nm:
-
nm:tldr:9691a nm: List global (extern) functions in a file (prefixed with T).$ nm -g ${filename-o}try on your machineexplain this command
-
nm:tldr:9e99c nm: List only undefined symbols in a file.$ nm -u ${filename-o}try on your machineexplain this command
-
nm:tldr:ba4c9 nm: Demangle C++ symbols (make them readable).$ nm --demangle ${filename-o}try on your machineexplain this command
-
nm:tldr:e33a3 nm: List all symbols, even debugging symbols.$ nm -a ${filename-o}try on your machineexplain this command