ic960 Compiler Driver
3-25
3
c (Create-object)
Create object file;
terminate.
c
Default
Create an executable file after the link phase of the compilation process.
Discussion
If you specify c (Create-object) the compilation process terminates after
the assembler generates an object file. If you do not specify the
o (Output)
option, the compiler writes the object file to
filename
.o, where
filename
is the source filename.
Examples
1. The following example produces the object file proto.o but no
executable file:
ic960 -c proto.c
2. The following example produces the object files proto.o, t1.o, and
proto1.o in the current directory but creates no executable file:
ic960 -c proto.c t1.s proto1.i
Related Topics
o (Output) Stop-after options