Blame SOURCES/binutils-2.28-ignore-gold-duplicates.patch

8c00d6
diff -rup binutils.orig/ld/ldmain.c binutils-2.28/ld/ldmain.c
8c00d6
--- binutils.orig/ld/ldmain.c	2017-06-09 09:08:26.954016429 +0100
8c00d6
+++ binutils-2.28/ld/ldmain.c	2017-06-09 09:09:11.307490976 +0100
8c00d6
@@ -923,6 +923,10 @@ multiple_definition (struct bfd_link_inf
8c00d6
       obfd = h->u.def.section->owner;
8c00d6
       break;
8c00d6
     case bfd_link_hash_indirect:
8c00d6
+      /* PR 21074: The GOLD linker can produce multiple indirect
8c00d6
+	 refences to the same symbol.  These can be ignored.  */
8c00d6
+      if (bfd_is_ind_section (nsec))
8c00d6
+	return;
8c00d6
       osec = bfd_ind_section_ptr;
8c00d6
       oval = 0;
8c00d6
       obfd = NULL;