Option -c, -S, or -E to say where gcc is to stop. Note that some combinations(for example, -x cpp-output -E) instruct gcc to do nothing at all.
-E Stop after the preprocessing stage; do not run the compiler proper.The output is in the form of preprocessed source code, which issent to the standard output.Input files which don't require preprocessing are ignored.
-S Stop after the stage of compilation proper; do not assemble. Theoutput is in the form of an assembler code file for each non-assembler input file specified.By default, the assembler file name for a source file is made byreplacing the suffix .c, .i, etc., with .s.Input files that don't require compilation are ignored.
- c Compile or assemble the source files, but do not link. The linkingstage simply is not done. The ultimate output is in the form of anobject file for each source file.By default, the object file name for a source file is made byreplacing the suffix .c, .i, .s, etc., with .o.Unrecognized input files, not requiring compilation or assembly,are ignored.
Option -c, -S, or -E to say where gcc is to stop. Note that some combinations(for example, -x cpp-output -E) instruct gcc to do nothing at all.-E Stop after the preprocessing stage; do not run the compiler proper.The output is in the form of preprocessed source code, which issent to the standard output.Input files which don't require preprocessing are ignored.-S Stop after the stage of compilation proper; do not assemble. Theoutput is in the form of an assembler code file for each non-assembler input file specified.By default, the assembler file name for a source file is made byreplacing the suffix .c, .i, etc., with .s.Input files that don't require compilation are ignored.- c Compile or assemble the source files, but do not link. The linkingstage simply is not done. The ultimate output is in the form of anobject file for each source file.By default, the object file name for a source file is made byreplacing the suffix .c, .i, .s, etc., with .o.Unrecognized input files, not requiring compilation or assembly,are ignored.
การแปล กรุณารอสักครู่..