From: Alan Modra Date: Fri, 10 Apr 2015 00:39:34 +0000 (+0930) Subject: Downgrade linker error on protected symbols in .dynbss to a warning X-Git-Tag: users/hjl/linux/release/2.25.51.0.2~2^2~16^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d07a1b059d790af3da88b9c750925d5a8db51250;p=thirdparty%2Fbinutils-gdb.git Downgrade linker error on protected symbols in .dynbss to a warning PR ld/18222 * elflink.c (_bfd_elf_adjust_dynamic_copy): Don't report an error on adding a protected visibility variable to .dynbss. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f1d93435223..f50ae75d239 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2015-04-10 Alan Modra + + PR ld/18222 + * elflink.c (_bfd_elf_adjust_dynamic_copy): Don't report an error + on adding a protected visibility variable to .dynbss. + 2015-04-10 Alan Modra Revert 2015-03-05 H.J. Lu diff --git a/bfd/elflink.c b/bfd/elflink.c index 183b313e3f4..5bc9e9b9d48 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -2674,13 +2674,9 @@ _bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info, dynbss->size += h->size; if (h->protected_def) - { - info->callbacks->einfo - (_("%P: copy reloc against protected `%T' is invalid\n"), - h->root.root.string); - bfd_set_error (bfd_error_bad_value); - return FALSE; - } + info->callbacks->einfo + (_("%P: copy reloc against protected `%T' is dangerous\n"), + h->root.root.string); return TRUE; }