mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* elf32-arm.c (elf32_arm_final_link_relocate): Correct return value.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2012-06-18 John Szakmeister <john@szakmeister.net>
|
||||||
|
|
||||||
|
* elf32-arm.c (elf32_arm_final_link_relocate): Correct return value.
|
||||||
|
|
||||||
2012-06-17 Hans-Peter Nilsson <hp@axis.com>
|
2012-06-17 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* elf32-cris.c (cris_elf_relocate_section): <R_CRIS_32_IE>
|
* elf32-cris.c (cris_elf_relocate_section): <R_CRIS_32_IE>
|
||||||
|
@ -9664,7 +9664,7 @@ elf32_arm_final_link_relocate (reloc_howto_type * howto,
|
|||||||
(_("%B(%A+0x%lx): R_ARM_TLS_LE32 relocation not permitted in shared object"),
|
(_("%B(%A+0x%lx): R_ARM_TLS_LE32 relocation not permitted in shared object"),
|
||||||
input_bfd, input_section,
|
input_bfd, input_section,
|
||||||
(long) rel->r_offset, howto->name);
|
(long) rel->r_offset, howto->name);
|
||||||
return (bfd_reloc_status_type) FALSE;
|
return bfd_reloc_notsupported;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
value = tpoff (info, value);
|
value = tpoff (info, value);
|
||||||
|
Reference in New Issue
Block a user