]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
xtensa: fix localized symbol refcounting with --gc-sections
authorMax Filippov <jcmvbkbc@gmail.com>
Thu, 14 May 2015 02:22:55 +0000 (05:22 +0300)
committerMax Filippov <jcmvbkbc@gmail.com>
Thu, 14 May 2015 04:07:27 +0000 (07:07 +0300)
commite6c9a083ec5ae7a45bd71682b26aae1939849388
tree1d0428700440811fe3779ed211f669c022a21955
parentd121800b7f1df96db2dc6ab1d1a86c51befde063
xtensa: fix localized symbol refcounting with --gc-sections

elf_xtensa_gc_sweep_hook doesn't correctly unreference symbols that were
made local, that results in link failure with the following message:

  BFD (GNU Binutils) 2.24 internal error, aborting at elf32-xtensa.c line
  3372 in elf_xtensa_finish_dynamic_sections

elf_xtensa_gc_sweep_hook determines symbol reference type (PLT or GOT) by
relocation type. Relocation types are not changed when symbol becomes
local, but its PLT references are added to GOT references and
plt.refcount is set to 0. Such symbol cannot be unreferences in the
elf_xtensa_gc_sweep_hook and its extra references make calculated GOT
relocations section size not match number of GOT relocations.

Fix it by treating PLT reference as GOT reference when plt.refcount is
not positive.

2015-05-14  Max Filippov  <jcmvbkbc@gmail.com>
bfd/
* elf32-xtensa.c (elf_xtensa_gc_sweep_hook): Treat PLT reference
as GOT reference when plt.refcount is not positive.
bfd/ChangeLog
bfd/elf32-xtensa.c