ic960 Compiler Driver
3-73
3
Default
The compiler does not produce any listing files.
Discussion
Use the z (List) option to generate a listing file for each primary source
file and to specify the listing file contents. The
arg
applies to all listing
files produced. A listing file contains, at a minimum, the source text from
the primary source file and diagnostic messages according to the
diagnostic level. You can add other listing information by specifying one
or more
arg
arguments instead of or in addition to s. Using the i, o, m, or
c argument implies the s argument.
Unless you specifically name the listing filename with the
Z (Listname)
option, the compiler derives a listing filename from each primary source
filename, as follows:
base.
L
base
is a primary source filename, without its
extension.
Example
The following example produces the listing file complex.L and object file
complex.o in the current working directory for the source file
/complex.c. The listing file contains primary source listing, included
source text, assembly language, source text that is conditionally compiled
out, and expanded macros.
ic960 -c -z cosmi /complex.c