NM(1) DOMAIN/IX SYS5 NM(1)
NAME
nm - print name list
USAGE
nm [ -gnopru ] [ file ... ]
DESCRIPTION
Nm prints the name list (symbol table) of each object file
in the argument list. If you fail to supply the name of a
file, nm lists the symbols in a.out.
Each symbol name is preceded by its value (blanks if unde-
fined) and one of the following letters: U (undefined), A
(absolute), T (text segment symbol), D (data segment sym-
bol), B (bss segment symbol), C (common symbol), f (file
name), or G (external global text symbol). If the symbol is
local (non-external), the type letter is in lower case. Nm
sorts the output alphabetically.
OPTIONS
-g Do not print global (external) symbols.
-n Sort numerically rather than alphabetically.
-o Prepend filename to each output line.
-p Don't sort; print in symbol-table order.
-r Sort in reverse order.
-u Print only symbols that are undefined (runtime
libraries are checked).
RELATED INFORMATION
ar(1), ar(4).
Printed 12/4/86 NM-1