1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| > man clang -E Run the preprocessor stage.
-fsyntax-only Run the preprocessor, parser and type checking stages.
-S Run the previous stages as well as LLVM generation and optimization stages and target-specific code generation, producing an assembly file.
-c Run all of the above, plus the assembler, generating a target ".o" object file.
no stage selection option If no stage selection option is specified, all stages above are run, and the linker is run to combine the results into an executable or shared library.
|