Skip to content

Commit

Permalink
[BZ #1137]
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
Roland McGrath committed Aug 4, 2005
1 parent c1950ac commit 8dd5f2e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/powerpc/powerpc32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions sysdeps/powerpc/powerpc64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8dd5f2e

Please sign in to comment.