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 /configure.in | |
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 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 609a23fad12..b7e29761e7f 100644 --- a/configure.in +++ b/configure.in @@ -937,6 +937,11 @@ case "${host}" in *-*-sysv4*) host_makefile_frag="config/mh-sysv4" ;; + # This is placed last to prevent interfering with the cases above. + i[[3456789]]86-*-*) + # Build the stage2 and stage3 compilers with -fomit-frame-pointer. + host_makefile_frag="config/mh-x86omitfp" + ;; esac fi |