What's the meaning of the -O4 optimization flag in gcc (3.2.3)? What's the difference to O3? When would you use one vs. the other?

The man pages only mention O, O0-3, Os, no word of the mysterious O4. Thanks!

link|improve this question

50% accept rate
2  
gcc 3.2.3 is positively archaic. Since then, the developers have released gcc 3.3, 3.4, 4.0, 4.1, 4.2, 4.3, 4.4, and 4.5. You should really use a more current release. – Novelocrat Aug 3 '10 at 20:35
2  
But the answer is the same for everything at least up to 4.4 – tstenner Aug 3 '10 at 20:47
Might be a leftover from the PGCC days which supported everything up to -O9. – Laurynas Biveinis Aug 5 '10 at 8:10
feedback

2 Answers

up vote 10 down vote accepted

There is no -O4 in 3.2.3. Everything above -O3 results in -O3 being chosen.

link|improve this answer
Ok that would explain it. Would you happen to know if I can tell what O flag was used when something was compiled if I have the binary? – user779 Aug 4 '10 at 19:36
Some build systems insert the compiler settings into the binary, but there's no easy, generic way. – tstenner Aug 4 '10 at 19:48
feedback

You can check what optimization are enabled for each level

gcc -c -Q -O3 --help=optimizers | grep enabled

It works at least for gcc 4.4.

link|improve this answer
Doesn't work with 4.1.2, but that's handy to know! – bstpierre Aug 3 '10 at 23:08
Works with 4.3.2, thanks for the tip. – Matthieu M. Aug 4 '10 at 7:28
feedback

Your Answer

 
or
required, but never shown

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