vote up 2 vote down star

I see this flag a lot in the makefiles.

What does it mean? and when should it be used?

flag
+1 for an undeserved down-vote – cdonner Mar 17 at 18:02
@cdonner : He was downvoted because he's asking questions from the MAN pages of gcc. Perhaps on purpose? – George Stocker Mar 17 at 18:49
This guy is asking way too many questions he can get the answers to himself very easily. Every google the docs for GCC? – Brian Neal Mar 18 at 3:00
Fully agree with Brian. People should try man and google before posting such questions. – qrdl Mar 18 at 7:50
From the site FAQ : No question is too trivial or too "newbie". – justinhj May 15 at 19:03

5 Answers

vote up 23 vote down check

Optimization level 2.

From the GCC man page:

-O1 Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function.

-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.

-O3 Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload and -ftree-vectorize options.

-O0 Reduce compilation time and make debugging produce the expected results. This is the default.

-Os Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 11 vote down

Optimization level 2, max is 3. See: http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html

Note, that in few years ago -03 could cause some glitches by excessively "optimizing" the code. AFAIK, that's no longer true with modern versions of GCC. But by inertia by many -02 is considered "the max safe".

link|flag
vote up 2 vote down

This is an optimize switch. See gcc --help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.