diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-02-20 06:07:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-02-20 06:07:55 +0000 |
commit | 11986c680d9ff586617955fc6b05c27f027baeaf (patch) | |
tree | 4ed2d5fb0065ba08f5020754870378ca324a6c3f /sysdeps/powerpc | |
parent | 64d2a3790d7e1ee48483c950514d9301398cf7df (diff) | |
download | glibc-11986c680d9ff586617955fc6b05c27f027baeaf.tar glibc-11986c680d9ff586617955fc6b05c27f027baeaf.tar.gz glibc-11986c680d9ff586617955fc6b05c27f027baeaf.tar.bz2 glibc-11986c680d9ff586617955fc6b05c27f027baeaf.zip |
Update.
2004-02-19 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/generic/libc-start.c [LIBC_START_DISABLE_INLINE] (STATIC):
Define as static.
* sysdeps/powerpc/elf/libc-start.c: Define LIBC_START_DISABLE_INLINE
because gcc does not allow inline of functions that call setjmp.
2004-02-19 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/powerpc/powerpc64/Makefile: Use -finline-limit.
2004-02-19 Jakub Jelinek <jakub@redhat.com>
* elf/rtld.c (_dl_argv): If DL_ARGV_NOT_RELRO defined, don't
use attribute_relro for _dl_argv.
* sysdeps/alpha/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/ia64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/sparc/sparc32/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/sparc/sparc64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
vfork instead of fork.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r-- | sysdeps/powerpc/elf/libc-start.c | 1 | ||||
-rw-r--r-- | sysdeps/powerpc/powerpc64/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/elf/libc-start.c b/sysdeps/powerpc/elf/libc-start.c index bbc4eeb3b8..1e1d68297e 100644 --- a/sysdeps/powerpc/elf/libc-start.c +++ b/sysdeps/powerpc/elf/libc-start.c @@ -49,6 +49,7 @@ __aux_init_cache (ElfW(auxv_t) *av) /* The main work is done in the generic function. */ #define LIBC_START_MAIN generic_start_main +#define LIBC_START_DISABLE_INLINE #define LIBC_START_MAIN_AUXVEC_ARG #define MAIN_AUXVEC_ARG #define INIT_MAIN_ARGS diff --git a/sysdeps/powerpc/powerpc64/Makefile b/sysdeps/powerpc/powerpc64/Makefile index 97c7cde129..758b856854 100644 --- a/sysdeps/powerpc/powerpc64/Makefile +++ b/sysdeps/powerpc/powerpc64/Makefile @@ -20,5 +20,5 @@ endif ifeq ($(subdir),elf) # help gcc inline asm code from dl-machine.h -+cflags += --param max-inline-insns=2000 ++cflags += -finline-limit=2000 endif |