[BZ #1137]
authorRoland McGrath <roland@gnu.org>
Thu, 4 Aug 2005 21:35:51 +0000 (21:35 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 4 Aug 2005 21:35:51 +0000 (21:35 +0000)
2005-08-03  Dwayne Grant McConnell  <dgm69@us.ibm.com>
* sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s):
Use +=, not =, to append.  Remove duplicate flags.
* sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
Likewise.  Fix comments.

[BZ #1137]

ChangeLog
sysdeps/powerpc/powerpc32/Makefile
sysdeps/powerpc/powerpc64/Makefile

index 2d95a12..2b40ce1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-08-03  Dwayne Grant McConnell  <dgm69@us.ibm.com>
+
+       * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s):
+       Use +=, not =, to append.  Remove duplicate flags.
+       * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
+       Likewise.  Fix comments.
+
 2005-08-01  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/sigwait.c (do_sigwait): Restart system
@@ -34,6 +41,7 @@
 
 2005-07-28  Thomas Schwinge  <schwinge@nic-nac-project.de>
 
+       [BZ #1137]
        * misc/error.c [_LIBC]: Include <stdbool.h> and <stdint.h>.
 
 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
index 82b4fc9..1d58a06 100644 (file)
@@ -21,7 +21,7 @@ ifeq ($(subdir),csu)
 ifneq ($(elf),no)
 # The initfini generation code doesn't work in the presence of -fPIC, so
 # we use -fpic instead which is much better.
-CFLAGS-initfini.s = -g0 -fpic -O1
+CFLAGS-initfini.s += -fpic -O1
 
 # There is no benefit to using sdata for these objects, and the user
 # of the library should be able to control what goes into sdata.
index 3ced656..cf29148 100644 (file)
@@ -12,9 +12,9 @@ endif
 
 ifeq ($(subdir),csu)
 ifneq ($(elf),no)
-# The initfini generation code doesn't work in the presence of -g1 or
-# higher, so we use -g0.
-CFLAGS-initfini.s = -g0 -fpic -O1
+# The initfini generation code doesn't work in the presence of -fPIC, so
+# we use -fpic instead which is much better.
+CFLAGS-initfini.s += -fpic -O1
 endif
 endif