Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
433 views
in Technique[技术] by (71.8m points)

c - 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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...