diff options
-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 |