diff options
author | Nick Clifton <nickc@redhat.com> | 2017-07-24 11:27:33 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-07-24 11:27:33 +0100 |
commit | 47aeb64c10ec9c9f06d2d2f4451f417d63b023e1 (patch) | |
tree | b29b88b2fe25f814ad01225d316dd28688ca4ca1 /bfd/elfnn-aarch64.c | |
parent | [ARC] Fix big-endian ld tests errors. (diff) | |
download | binutils-gdb-47aeb64c10ec9c9f06d2d2f4451f417d63b023e1.tar.gz binutils-gdb-47aeb64c10ec9c9f06d2d2f4451f417d63b023e1.tar.bz2 binutils-gdb-47aeb64c10ec9c9f06d2d2f4451f417d63b023e1.zip |
Improve "unrecognized relocation" error messages to add the suggestion that the linker might be out of date.
PR 21803
* reloc.c (_bfd_unrecognized_reloc): New function. Reports
an unrecognized reloc and sets the bfd_error value.
* libbfd.h: Regenerate.
* elf32-arm.c (elf32_arm_final_link_relocate): Use the new
function.
* elf32-i386.c (elf_i386_relocate_section): Likewise.
* elf32-tilepro.c (tilepro_elf_relocate_section): Likewise.
* elf64-x86-64.c (elf_x86_64_relocate_section): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_relocate_section): Likewise.
* elfxx-tilegx.c (tilegx_elf_relocate_section): Likewise.
Diffstat (limited to 'bfd/elfnn-aarch64.c')
-rw-r--r-- | bfd/elfnn-aarch64.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c index be2f89cfc30..0d8332e69ce 100644 --- a/bfd/elfnn-aarch64.c +++ b/bfd/elfnn-aarch64.c @@ -6072,17 +6072,11 @@ elfNN_aarch64_relocate_section (bfd *output_bfd, r_symndx = ELFNN_R_SYM (rel->r_info); r_type = ELFNN_R_TYPE (rel->r_info); - bfd_reloc.howto = elfNN_aarch64_howto_from_type (r_type); - howto = bfd_reloc.howto; + howto = bfd_reloc.howto = elfNN_aarch64_howto_from_type (r_type); if (howto == NULL) - { - /* xgettext:c-format */ - _bfd_error_handler - (_("%B: unrecognized relocation (0x%x) in section `%A'"), - input_bfd, r_type, input_section); - return FALSE; - } + return _bfd_unrecognized_reloc (input_bfd, input_section, r_type); + bfd_r_type = elfNN_aarch64_bfd_reloc_from_howto (howto); h = NULL; |