El manual de usuario de KDevelop: Guía de referencia para el Entorno Integrado de Desarrollo KDevelop para sistemas Unix, versión 1.2. | ||
---|---|---|
Prev | Chapter 9. Generación de ejecutables | Next |
The compiler options page sets the compiler flags towards your target, debugging and additional.
The target box contains three options that can be set:
Target Machine: You have the choice to set the target machine option here by choosing between your machine (default) and i386v, which is the option if you configure d your Compiler as a cross-compiler for an Intel 386-compatible machine running System V. This option sets the -b flag to the Compiler . Usually you would leave this to the default.
only syntax-check: If checked, the -fsyntax-only flag is set. This means that the Compiler will check your code only for correctness in regards to the syntax, but doesn't check anything beyond that.
Optimize: You can enable optimization for your build process by this option, meaning to set the -O flag. If not checked, the flag is set to -O0, so no optimization will be used. If you enable optimization by checking this option, you can as well specify the optimization level below from 1 to 3.
For a release version of your application, enable optimization and set the level to 2.
Right of the Target box, you can see the debugging -section. This means that you can set your Compiler to include information for debuggers within the final binary, so the programmer can follow the execution of the application with the debugger in direct context to the sourcecode.
Enable debugging therefore sets the -g flag; the debugging level specifies the amount of information to be included in the binary. Available are level 1 to 3 to choose from. Mind that the binary execution will be slower by setting any debugging option and that the binary size will increase by the debugging level.
Generate extra information for gprof: sets the -pg flag, resulting that the Compiler will include information for the gprof program that displays caller graphs of your program's function.
Store temporary intermediate files: sets the -save-temps flag. This will result in storing the usually temporary files produced by the preprocessor and the assembler. A compilation of a sourcefile will therefore produce three output files: an *.o file which is the final output of the Compiler , an *.i file produced by the preprocessor and an *.s file as the output of the assembler.
For a release of your project, disable any debugging .
The text entry field on the bottom is intended for you to manually set any flags for the Compiler by setting the CXXFLAGS environment variable in the Makefile s, so make sets the flags before the build process and reset them afterwards. For a complete description of all available Compiler flags you should see your Compiler documentation; for gcc and egcs this can be done by man gcc; man g++ will show you information about the c++ script that is used to lead the Compiler .