Blame SOURCES/binutils-gold-mismatched-section-flags.patch

d1152b
diff -rup binutils.orig/gold/layout.cc binutils-2.32/gold/layout.cc
d1152b
--- binutils.orig/gold/layout.cc	2019-06-24 14:37:36.013086899 +0100
d1152b
+++ binutils-2.32/gold/layout.cc	2019-06-24 14:41:40.054517479 +0100
d1152b
@@ -868,6 +868,7 @@ Layout::get_output_section(const char* n
d1152b
 		  && (same_name->flags() & elfcpp::SHF_TLS) == 0)
d1152b
 		os = same_name;
d1152b
 	    }
d1152b
+#if 0 /* BZ 1722715, PR 17556.  */
d1152b
 	  else if ((flags & elfcpp::SHF_TLS) == 0)
d1152b
 	    {
d1152b
 	      elfcpp::Elf_Xword zero_flags = 0;
d1152b
@@ -878,6 +879,7 @@ Layout::get_output_section(const char* n
d1152b
 	      if (p != this->section_name_map_.end())
d1152b
 		os = p->second;
d1152b
 	    }
d1152b
+#endif
d1152b
 	}
d1152b
 
d1152b
       if (os == NULL)