mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/powerpc/Makefile (CFLAGS-initfini.s): Add -O1 to avoid the problems introduced when the user selects -O3.
This commit is contained in:
parent
a1620a4c55
commit
d6b544fe23
|
|
@ -1,5 +1,8 @@
|
||||||
2000-11-27 Ulrich Drepper <drepper@redhat.com>
|
2000-11-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/powerpc/Makefile (CFLAGS-initfini.s): Add -O1 to avoid
|
||||||
|
the problems introduced when the user selects -O3.
|
||||||
|
|
||||||
* iconv/gconv.h (__gconv_info): Define __data element using __flexarr.
|
* iconv/gconv.h (__gconv_info): Define __data element using __flexarr.
|
||||||
* misc/sys/cdefs.h: Define __flexarr.
|
* misc/sys/cdefs.h: Define __flexarr.
|
||||||
Proposed by Joseph S. Myers <jsm28@cam.ac.uk>.
|
Proposed by Joseph S. Myers <jsm28@cam.ac.uk>.
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ ifeq ($(subdir),csu)
|
||||||
ifneq ($(elf),no)
|
ifneq ($(elf),no)
|
||||||
# The initfini generation code doesn't work in the presence of -fPIC, so
|
# The initfini generation code doesn't work in the presence of -fPIC, so
|
||||||
# we use -fpic instead which is much better.
|
# we use -fpic instead which is much better.
|
||||||
CFLAGS-initfini.s = -g0 -fpic
|
CFLAGS-initfini.s = -g0 -fpic -O1
|
||||||
|
|
||||||
# There is no benefit to using sdata for these objects, and the user
|
# 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.
|
# of the library should be able to control what goes into sdata.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue