gcc960 Compiler Driver
2-47
2
o (Output)
Specifies output
filename.
o
filename
Specifies output filename.
P (Preprocessor Output)
Preprocessor output
control.
Inhibits generation of #-lines with line-number information in the output
from the preprocessor. This is useful when running the preprocessor on
non-C code that is intended for a program that might be confused by the
#-lines.
pedantic[-errors] (Pedantic)
Controls ANSI messages
pedantic causes the compilation system to issue all the warnings
specified by ANSI C (such as when text other than a comment follows
#else or #endif) and to reject programs that use forbidden extensions.
Valid ANSI standard C programs should compile properly with or without
this option (though a rare few require
ansi). However, without this
option, certain GNU extensions and traditional C features are supported as
well. With this option, they are rejected.