noft Manual (G06.27+, H06.03+, J06.03+)
noft Options
noft Manual—528273-003
3-37
LISTUNRESOLVED or LU
If the program in Example 3-32 on page 3-36 is compiled and made executable and
the program file is designated to noft with the option FILE or F on page 3-17,
Example 3-33 shows the result of the LISTUNREFERENCED option—the NMC compiler
eliminates unreferenced prototypes. Compare Example 3-33 to Example 3-37 on
page 3-39, which shows the result of the LISTUNRESOLVED option.
LISTUNRESOLVED or LU
The LISTUNRESOLVED option lists the unresolved symbols in an object code file.
These references must be resolved before the file can be executed. (Compare this
option with the option LISTUNREFERENCED or LUR on page 3-35.)
PROC
P
displays unresolved procedures.
DATA
D
displays unresolved data items.
*
displays all unresolved items.
BRIEF
B
displays only symbol names and numbers. This is the default format.
DETAIL
D
displays detailed name information. For C++ functions, DETAIL provides the
“demangled” (original) names as well as the “mangled” internal equivalents.
Example 3-33. LISTREFERENCED Option for Example 3-32 C Program
noft> listunreferenced *
*** DATA ERROR *** [1055]:
Did not find any unreferenced symbols matching scope.
{ LISTUNRESOLVED | LU } { PROC | P | DATA | D | * }
[ BRIEF | B | DETAIL | D | EXCLUDE | E ]
Note. This option is not available for PIC object code files.