Blame SOURCES/binutils-gold-ignore-discarded-note-relocs.patch

0c74e2
--- binutils.orig/gold/target-reloc.h	2018-07-12 11:37:24.894494658 +0100
0c74e2
+++ binutils-2.30.90/gold/target-reloc.h	2018-07-12 15:38:50.049083904 +0100
0c74e2
@@ -136,6 +136,7 @@ class Default_comdat_behavior
0c74e2
     if (Layout::is_debug_info_section(name))
0c74e2
       return CB_PRETEND;
0c74e2
     if (strcmp(name, ".eh_frame") == 0
0c74e2
+	|| strncmp(name, ".gnu.build.attributes", 21) == 0 	// FIXME: We should really be checking the section type for ST_NOTE...
0c74e2
 	|| strcmp(name, ".gcc_except_table") == 0)
0c74e2
       return CB_IGNORE;
0c74e2
     return CB_ERROR;