aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2004-09-20 00:58:42 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2004-09-20 00:58:42 +0000
commit95c53c62a0ead38459084c66a708af8c8097f00d (patch)
treeae7620654cd3abc6a05fd2e8f8a8c14ae39fece6 /configure
parent82b0258299e4775deccaf6bebc2626d0892d08e5 (diff)
downloadgcc-95c53c62a0ead38459084c66a708af8c8097f00d.zip
gcc-95c53c62a0ead38459084c66a708af8c8097f00d.tar.gz
gcc-95c53c62a0ead38459084c66a708af8c8097f00d.tar.bz2
mh-x86omitfp: New host makefile fragment.
* 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. From-SVN: r87741
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 592bf91..100f407 100755
--- a/configure
+++ b/configure
@@ -1715,6 +1715,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