Compiler Command Line Options
With the use of appropriate options, it is possible to direct the compiler to generate intermediate translations, including relocatable object files (-c option), assembly source expansions (-S option). In general, it is possible to save the intermediate files and reference them later on another invocation of the compiler, with other files or libraries included as necessary.
With the use of appropriate options, it is possible to direct the compiler to generate intermediate translations, including relocatable object files (-c option), assembly source expansions (-S option). In general, it is possible to save the intermediate files and reference them later on another invocation of the compiler, with other files or libraries included as necessary.
Options that are not recognized by the compiler driver are passed to the linking phase.
If the specified options conflict, the option specified last on the command line overrides the previously specified option. Exceptions to this rule are noted in the individual descriptions of the options.
There are many options that start with -h. Specify multiple -h options using commas to separate the arguments.
Multiple -h options
cc -h parse_templates, fp0Conflicting options
In this example, -h fp0 overrides -h fp1.