forked from pool/binutils
1b21a4661a
on s390x. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=126
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
--- bfd/elf32-s390.c.orig 2013-04-03 15:04:56.274458632 +0200
|
|
+++ bfd/elf32-s390.c 2013-04-03 15:06:35.071564928 +0200
|
|
@@ -2649,13 +2649,34 @@
|
|
unresolved_reloc = FALSE;
|
|
break;
|
|
|
|
- case R_390_8:
|
|
- case R_390_16:
|
|
- case R_390_32:
|
|
case R_390_PC16:
|
|
case R_390_PC16DBL:
|
|
case R_390_PC32DBL:
|
|
case R_390_PC32:
|
|
+ /* This is strictly required only for PC32DBL, which
|
|
+ is not handled by ld.so, but let's be helpful to the user also
|
|
+ in the other cases. */
|
|
+ if (info->shared
|
|
+ && !SYMBOL_REFERENCES_LOCAL (info, h)
|
|
+ && (input_section->flags & SEC_ALLOC) != 0
|
|
+ && (input_section->flags & SEC_READONLY) != 0
|
|
+ && (!h->def_regular
|
|
+ || r_type != R_390_PC32DBL
|
|
+ || h->type != STT_FUNC
|
|
+ || ELF_ST_VISIBILITY (h->other) != STV_PROTECTED))
|
|
+ {
|
|
+ (*_bfd_error_handler)
|
|
+ (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
|
|
+ input_bfd, elf_howto_table[r_type].name,
|
|
+ h->root.root.string);
|
|
+ bfd_set_error (bfd_error_bad_value);
|
|
+ return FALSE;
|
|
+ }
|
|
+ /* Fall through. */
|
|
+
|
|
+ case R_390_8:
|
|
+ case R_390_16:
|
|
+ case R_390_32:
|
|
if (h != NULL
|
|
&& s390_is_ifunc_symbol_p (h)
|
|
&& h->def_regular)
|