ic960 Compiler Driver
3-55
3
Example
The following example puts the preprocessed source for proto.c in the
file
proto.i and the preprocessed source for proto1.c in the file
proto1.i:
ic960 -P proto.c proto1.c
Related Topics
o (Output) Stop-after options
Q (Dependencies)
Print include-file
dependencies;
terminate.
Q
Discussion
If you specify Q (Dependencies), the compilation process terminates after
preprocessing and the compiler writes a list of dependency lines to
standard output. The dependency lines take the form
object
:
subfile
where
object
is an object filename derived from the name of a primary C
source file and
subfile
is the name of a file needed to create the object
file. The preprocessor generates one line for each
subfile
on which the
object file depends, including the primary C source file. Preprocessor
directives for conditional compilation affect the output of the dependency
lines.