i960 Processor Compiler User's Guide
2-48
2
pedantic does not cause warning messages for use of the alternate
keywords whose names begin and end with
_ _ (double underscore).
pedantic-errors is the same as pedantic, except that it causes the
compilation system to issue errors instead of warnings.
S (Assembly)
Create assembly output.
Compile into assembly code but do not assemble. The assembly output
filename is made by replacing
.c or .i with .s at the end of the input
filename. Do nothing for assembly source files or object files specified as
input.
save-temps (Save Intermediates)
Save intermediate files.
Store the usual "temporary" intermediate files permanently; place them in
the current directory and name them based on the source file. Thus,
compiling
foo.c with -c -save-temps would produce files foo.i and
foo.s, as well as foo.o.