From 2a626c2bd2bdea74d59553bd9fad9d17959b3aab Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 5 Mar 2005 13:03:35 +0000 Subject: * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define unconditionally to (defined RTLD_BOOTSTRAP). * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Likewise. linuxthreads/ * sysdeps/powerpc/tcb-offsets.sym (thread_offsetof): Rework for GCC 4. --- sysdeps/arm/dl-machine.h | 4 +--- sysdeps/i386/dl-machine.h | 4 +--- sysdeps/i386/i486/Makefile | 4 ++++ 3 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 sysdeps/i386/i486/Makefile (limited to 'sysdeps') diff --git a/sysdeps/arm/dl-machine.h b/sysdeps/arm/dl-machine.h index e8015ac5fe..7ddd81234b 100644 --- a/sysdeps/arm/dl-machine.h +++ b/sysdeps/arm/dl-machine.h @@ -353,9 +353,7 @@ elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc, /* ARM never uses Elf32_Rela relocations for the dynamic linker. Prelinked libraries may use Elf32_Rela though. */ -#ifdef RTLD_BOOTSTRAP -# define ELF_MACHINE_NO_RELA 1 -#endif +#define ELF_MACHINE_NO_RELA (defined RTLD_BOOTSTRAP) #ifdef RESOLVE diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index a965a4a5fc..367a4fb1a8 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -301,9 +301,7 @@ elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc, /* The i386 never uses Elf32_Rela relocations for the dynamic linker. Prelinked libraries may use Elf32_Rela though. */ -#ifdef RTLD_BOOTSTRAP -# define ELF_MACHINE_NO_RELA 1 -#endif +#define ELF_MACHINE_NO_RELA (defined RTLD_BOOTSTRAP) #ifdef RESOLVE_MAP diff --git a/sysdeps/i386/i486/Makefile b/sysdeps/i386/i486/Makefile new file mode 100644 index 0000000000..930731a166 --- /dev/null +++ b/sysdeps/i386/i486/Makefile @@ -0,0 +1,4 @@ +# Temporary workaround for GCC4 PR debug/19345 +ifeq ($(subdir),string) +CFLAGS-string-inlines.c += -g0 +endif -- cgit v1.2.3