I see this flag a lot in the makefiles.
What does it mean? and when should it be used?
|
|
|||||||||||
|
|
|
Optimization level 2. From the GCC man page:
|
||
|
|
|
|
Tried manpage? -O2 Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. The compiler does not perform loop unrolling or function inlining when you specify -O2. As compared to -O, this option increases both compilation time and the performance of the generated code. In human words: it is the highest truly safe way of optimization. -O3 makes reorganizations which can be troublesome at times. The subject as such is fairly deep. |
||
|
|
|
|
Compilers can use various optimization techniques like loop unrolling, CPU pipeline optimizations to find useless code and avoid data hazards to speed up your code. For example, a loop that happens a fixed amount of times will be converted to contiguous code without the loop control overhead. Or if all the loop iterations are independent, some code parallelization is possible. Setting the optimization level to 2 tells how much energy the compiler should spend looking for those optimizations. The possible values range from 1 to 3 You can learn more about what the compiler can do to optimize your code: http://en.wikipedia.org/wiki/Compiler_optimization |
|||
|
|
|
|
Optimization level 2, max is 3. See: http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html Note, that in few years ago |
|||
|
|
|
|
This is an optimize switch. See gcc --help. |
||
|
|