From: Alan Modra Date: Tue, 3 Dec 2013 04:31:20 +0000 (+1030) Subject: PowerPC64 linking of --just-symbols objects (klibc) X-Git-Tag: gdb-7.7-release~299 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c3f079f58204594bc271b919a643e9f2813aa12;p=external%2Fbinutils.git PowerPC64 linking of --just-symbols objects (klibc) With -mcmodel=medium we can't assume that a -R object doesn't use toc-relative addressing if there's no toc. Lots of things are accessed via r2, not just the toc/got section. Also, testing for .opd is plain wrong for ELFv2. * elf64-ppc.c (ppc64_elf_link_just_syms): Remove .got check. Handle ELFv2. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 17e1fab..e213a15 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-12-03 Alan Modra + + * elf64-ppc.c (ppc64_elf_link_just_syms): Remove .got check. + Handle ELFv2. + 2013-11-26 Will Newton * elfnn-aarch64.c (elfNN_aarch64_finish_dynamic_symbol): diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index 489ea79..4bbb70f 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -5001,10 +5001,8 @@ ppc64_elf_link_just_syms (asection *sec, struct bfd_link_info *info) && (sec->owner->flags & (EXEC_P | DYNAMIC)) != 0 && is_ppc64_elf (sec->owner)) { - asection *got = bfd_get_section_by_name (sec->owner, ".got"); - if (got != NULL - && got->size >= elf_backend_got_header_size - && bfd_get_section_by_name (sec->owner, ".opd") != NULL) + if (abiversion (sec->owner) >= 2 + || bfd_get_section_by_name (sec->owner, ".opd") != NULL) sec->has_toc_reloc = 1; } _bfd_elf_link_just_syms (sec, info);