From: Cupertino Miranda <cmiranda@xxxxxxxxxxxx> Offset set by the linker in the GOT entries would be overwritten by the dynamic loader instead of added to the symbol location. Other target have the same approach on DTSOFF relocs. Signed-off-by: Vineet Gupta <vgupta@xxxxxxxxxxxx> --- ChangeLog | 4 ++++ sysdeps/arc/dl-machine.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 39ff298b0091..ec068c7c5925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-12-17 Cupertino Miranda <cmiranda@xxxxxxxxxxxx> + + * sysdeps/arc/dl-machine.h: Fix relocation. + 2018-12-17 Vineet Gupta <vgupta@xxxxxxxxxxxx> * sysdeps/unix/make-syscalls.sh: Fix comment referencing diff --git a/sysdeps/arc/dl-machine.h b/sysdeps/arc/dl-machine.h index 02727a3a4d47..f4757904084a 100644 --- a/sysdeps/arc/dl-machine.h +++ b/sysdeps/arc/dl-machine.h @@ -290,7 +290,7 @@ elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc, case R_ARC_TLS_DTPOFF: if (sym != NULL) { - *reloc_addr = sym->st_value; + *reloc_addr += sym->st_value; } break; -- 2.7.4 _______________________________________________ linux-snps-arc mailing list linux-snps-arc@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/linux-snps-arc