开发者

which version of gcc support the -Ofast optimization level?

开发者 https://www.devze.com 2023-02-06 03:10 出处:网络
I found Ofast level opt in the doc of gcc on http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#Optimize-Options.

I found Ofast level opt in the doc of gcc on http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#Optimize-Options. But when i compile my code using this level,gcc told me not recognize this flag. I'm using gcc 4.5.2 which is the most recently released gcc. So which version 开发者_高级运维of gcc support this level? Tnanks.


The -Ofast flag is a new feature in GCC 4.6 -- see the list of changes here.


GCC's changelog seems to indicate that this will be available in the 4.6 release series (which does not yet have a stable release). Optionally, you could try building the development sources from their SVN repo or grabbing a pre-built snapshot from one of the mirrors.

0

精彩评论

暂无评论...
验证码 换一张
取 消