From 9edfd1af330deb8c8ab6aeade232be87819bed22 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 23 May 2005 16:22:25 +0000 Subject: [PATCH] * elf32-ppc.c (ppc_elf_check_relocs): For old gcc -fPIC code force old plt layout. --- bfd/ChangeLog | 5 +++++ bfd/elf32-ppc.c | 26 ++++++++++++++++++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 4983c7a..7803520 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-05-24 Alan Modra + + * elf32-ppc.c (ppc_elf_check_relocs): For old gcc -fPIC code + force old plt layout. + 2005-05-22 Richard Henderson * elf64-alpha.c (elf64_alpha_relax_section): Ignore non-allocated diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 585bf7d..c911923 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -3160,14 +3160,32 @@ ppc_elf_check_relocs (bfd *abfd, info->flags |= DF_STATIC_TLS; goto dodyn; - /* When creating a shared object, we must copy these - relocs into the output file. We create a reloc - section in dynobj and make room for the reloc. */ + case R_PPC_REL32: + if (h == NULL + && got2 != NULL + && (sec->flags & SEC_CODE) != 0 + && (info->shared || info->pie) + && !htab->old_plt) + { + /* Old -fPIC gcc code has .long LCTOC1-LCFx just before + the start of a function, which assembles to a REL32 + reference to .got2. If we detect one of these, then + force the old PLT layout because the linker cannot + reliably deduce the GOT pointer value needed for + PLT call stubs. */ + asection *s; + + s = bfd_section_from_r_symndx (abfd, &htab->sym_sec, sec, + r_symndx); + if (s == got2) + htab->old_plt = 1; + } + /* fall through */ + case R_PPC_REL24: case R_PPC_REL14: case R_PPC_REL14_BRTAKEN: case R_PPC_REL14_BRNTAKEN: - case R_PPC_REL32: if (h == NULL) break; if (h == htab->elf.hgot) -- 2.7.4