diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 00:58:42 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 00:58:42 +0000 |
commit | da9e65193f2e4406a3e8cf527010ed9a83245516 (patch) | |
tree | ae7620654cd3abc6a05fd2e8f8a8c14ae39fece6 /config | |
parent | ee79986364fafedb1fcfc7f0e52c123a97155691 (diff) | |
download | gcc-da9e65193f2e4406a3e8cf527010ed9a83245516.tar.gz |
* config/mh-x86omitfp: New host makefile fragment. Add
-fomit-frame-pointer to the default BOOT_CFLAGS.
* configure.in: Use it to speed up bootstrap on some IA-32 hosts.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87741 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r-- | config/mh-x86omitfp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/mh-x86omitfp b/config/mh-x86omitfp new file mode 100644 index 00000000000..563f02ba0a9 --- /dev/null +++ b/config/mh-x86omitfp @@ -0,0 +1,2 @@ +# Add -fomit-frame-pointer to the usual BOOT_CFLAGS to speed up the compiler. +BOOT_CFLAGS = -O2 -g -fomit-frame-pointer |