diff options
author | Sebastian Pop <sebpop@gmail.com> | 2007-07-05 20:26:10 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2007-07-05 20:26:10 +0000 |
commit | ec162f0dca286e595676101d0b080be5a6095cb9 (patch) | |
tree | ac6ec3bbc2f751c0b4aa982313503743109ce92c | |
parent | d8d72314c4667d88f62059c0964ea37756676f29 (diff) | |
download | gcc-ec162f0dca286e595676101d0b080be5a6095cb9.zip gcc-ec162f0dca286e595676101d0b080be5a6095cb9.tar.gz gcc-ec162f0dca286e595676101d0b080be5a6095cb9.tar.bz2 |
re PR target/32622 (BOOT_CFLAGS is not passed to stage2 and stage3 compile)
PR bootstrap/32622
* config/mh-x86omitfp (BOOT_CFLAGS): Add -fomit-frame-pointer,
don't reset its value.
From-SVN: r126386
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | config/mh-x86omitfp | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-07-05 Sebastian Pop <sebpop@gmail.com> + + PR bootstrap/32622 + * config/mh-x86omitfp (BOOT_CFLAGS): Add -fomit-frame-pointer, + don't reset its value. + 2007-07-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * MAINTAINERS (OS Port Maintainers): Add myself as IRIX, Tru64 UNIX diff --git a/config/mh-x86omitfp b/config/mh-x86omitfp index 563f02b..7f536c8 100644 --- a/config/mh-x86omitfp +++ b/config/mh-x86omitfp @@ -1,2 +1,2 @@ # Add -fomit-frame-pointer to the usual BOOT_CFLAGS to speed up the compiler. -BOOT_CFLAGS = -O2 -g -fomit-frame-pointer +BOOT_CFLAGS += -fomit-frame-pointer |