Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get gcc -O1 optimization without specifying -O1

I know that -O1 automatically turns on certain flags. These flags can be turned on manually though. If I don't specify -O1, it should still be possible to get -O1 optimization by specifying all the flags that -O1 turns on.

I tried

-fthread-jumps -fcprop-registers -fguess-branch-probability

but it still does not do -O1 optimization. I can tell when I use gprof because the performance is not as good.

Which flags do I turn on to get -O1 optimization?

like image 768
neuromancer Avatar asked Nov 22 '09 13:11

neuromancer


1 Answers

One way to find out:

gcc -O1 -c -Q -v dummy.c

(where dummy.c is your filename.) This causes gcc to spew the flags used to the command line.

Edit: Please see kastauyra's answer on this. It appears you cannot simulate full -O1 optimization with -f flags alone.

like image 108
int3 Avatar answered Oct 13 '22 01:10

int3