diff options
author | Paolo Bonzini <paolo.bonzini@lu.unisi.ch> | 2007-08-08 18:05:51 +0200 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2007-08-08 09:05:51 -0700 |
commit | be1767b73e150980697a1d88fea543ebe2de7f17 (patch) | |
tree | 902203cbe5622cac90b0e3899a02bc0a1c0d6f51 | |
parent | c93c5160b35c290a929becde7d9ea0c994116bd0 (diff) | |
download | gcc-be1767b73e150980697a1d88fea543ebe2de7f17.zip gcc-be1767b73e150980697a1d88fea543ebe2de7f17.tar.gz gcc-be1767b73e150980697a1d88fea543ebe2de7f17.tar.bz2 |
t-crtstuff (CRTSTUFF_T_CFLAGS): Use +=.
2007-08-08 Paolo Bonzini <paolo.bonzini@lu.unisi.ch>
* config/i386/t-crtstuff (CRTSTUFF_T_CFLAGS): Use +=.
From-SVN: r127301
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/t-crtstuff | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6268b2d..356f904 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-08-08 Paolo Bonzini <paolo.bonzini@lu.unisi.ch> + + * config/i386/t-crtstuff (CRTSTUFF_T_CFLAGS): Use +=. + 2007-08-08 Richard Sandiford <richard@codesourcery.com> Sandra Loosemore <sandra@codesourcery.com> Chao-ying Fu <fu@mips.com> diff --git a/gcc/config/i386/t-crtstuff b/gcc/config/i386/t-crtstuff index 8fe5875..c14dd94 100644 --- a/gcc/config/i386/t-crtstuff +++ b/gcc/config/i386/t-crtstuff @@ -4,4 +4,4 @@ # section. -fno-asynchronous-unwind-tables is off by default for i386 # and is on by default for x86-64. We turn it off for both i386 and # x86-64. -CRTSTUFF_T_CFLAGS = -fno-omit-frame-pointer -fno-asynchronous-unwind-tables +CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables |