]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[ARM] FDPIC: Translate R_ARM_TARGET2 relocation into R_ARM_GOT32 relocation for FDPIC...
authorChristophe Lyon <christophe.lyon@st.com>
Tue, 20 Mar 2018 09:55:45 +0000 (10:55 +0100)
committerChristophe Lyon <christophe.lyon@linaro.org>
Wed, 18 Apr 2018 12:20:26 +0000 (12:20 +0000)
2018-XX-XX  Christophe Lyon  <christophe.lyon@st.com>
Mickaël Guêné  <mickael.guene@st.com>

bfd/
* elf32-arm.c (bfd_elf32_arm_set_target_params): Handle FDPIC case
for R_ARM_TARGET2.

bfd/elf32-arm.c

index 35b60ed9f5bff2a0e04b07fc65017221df1be877..c2f48046200d21fde015d0ec16fdb1e4f8abc9cf 100644 (file)
@@ -8957,7 +8957,9 @@ bfd_elf32_arm_set_target_params (struct bfd *output_bfd,
     return;
 
   globals->target1_is_rel = params->target1_is_rel;
-  if (strcmp (params->target2_type, "rel") == 0)
+  if (globals->fdpic_p)
+    globals->target2_reloc = R_ARM_GOT32;
+  else if (strcmp (params->target2_type, "rel") == 0)
     globals->target2_reloc = R_ARM_REL32;
   else if (strcmp (params->target2_type, "abs") == 0)
     globals->target2_reloc = R_ARM_ABS32;