|
|
1a405f |
diff -rup binutils.orig/bfd/elf32-s390.c binutils-2.27/bfd/elf32-s390.c
|
|
|
1a405f |
--- binutils.orig/bfd/elf32-s390.c 2017-05-12 13:00:01.697650210 +0100
|
|
|
1a405f |
+++ binutils-2.27/bfd/elf32-s390.c 2017-05-12 13:01:05.223988744 +0100
|
|
|
1a405f |
@@ -2809,7 +2809,7 @@ elf_s390_relocate_section (bfd *output_b
|
|
|
1a405f |
&& s390_is_ifunc_symbol_p (h)
|
|
|
1a405f |
&& h->def_regular)
|
|
|
1a405f |
{
|
|
|
1a405f |
- if (!bfd_link_pic (info) || !h->non_got_ref)
|
|
|
1a405f |
+ if (!bfd_link_pic (info))
|
|
|
1a405f |
{
|
|
|
1a405f |
/* For a non-shared object STT_GNU_IFUNC symbol must
|
|
|
1a405f |
go through PLT. */
|
|
|
1a405f |
diff -rup binutils.orig/bfd/elf64-s390.c binutils-2.27/bfd/elf64-s390.c
|
|
|
1a405f |
--- binutils.orig/bfd/elf64-s390.c 2017-05-12 13:00:01.699650190 +0100
|
|
|
1a405f |
+++ binutils-2.27/bfd/elf64-s390.c 2017-05-12 13:01:31.017720167 +0100
|
|
|
1a405f |
@@ -2768,10 +2768,11 @@ elf_s390_relocate_section (bfd *output_b
|
|
|
1a405f |
&& s390_is_ifunc_symbol_p (h)
|
|
|
1a405f |
&& h->def_regular)
|
|
|
1a405f |
{
|
|
|
1a405f |
- if (!bfd_link_pic (info) || !h->non_got_ref)
|
|
|
1a405f |
+ if (!bfd_link_pic (info))
|
|
|
1a405f |
{
|
|
|
1a405f |
- /* For a non-shared object STT_GNU_IFUNC symbol must
|
|
|
1a405f |
- go through PLT. */
|
|
|
1a405f |
+ /* For a non-shared object the symbol will not
|
|
|
1a405f |
+ change. Hence we can write the address of the
|
|
|
1a405f |
+ target IPLT slot now. */
|
|
|
1a405f |
relocation = (htab->elf.iplt->output_section->vma
|
|
|
1a405f |
+ htab->elf.iplt->output_offset
|
|
|
1a405f |
+ h ->plt.offset);
|
|
|
1a405f |
diff -rup binutils.orig/bfd/elf-s390-common.c binutils-2.27/bfd/elf-s390-common.c
|
|
|
1a405f |
--- binutils.orig/bfd/elf-s390-common.c 2017-05-12 13:00:01.695650231 +0100
|
|
|
1a405f |
+++ binutils-2.27/bfd/elf-s390-common.c 2017-05-12 13:01:54.347477247 +0100
|
|
|
1a405f |
@@ -161,9 +161,7 @@ keep:
|
|
|
1a405f |
h->type = STT_FUNC;
|
|
|
1a405f |
}
|
|
|
1a405f |
|
|
|
1a405f |
- /* We need dynamic relocation for STT_GNU_IFUNC symbol only when
|
|
|
1a405f |
- there is a non-GOT reference in a shared object. */
|
|
|
1a405f |
- if (!bfd_link_pic (info) || !h->non_got_ref)
|
|
|
1a405f |
+ if (!bfd_link_pic (info))
|
|
|
1a405f |
*head = NULL;
|
|
|
1a405f |
|
|
|
1a405f |
/* Finally, allocate space. */
|