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

a6dfc0
diff -rup binutils.orig/gold/layout.cc binutils-2.32/gold/layout.cc
a6dfc0
--- binutils.orig/gold/layout.cc	2019-06-24 14:37:36.013086899 +0100
a6dfc0
+++ binutils-2.32/gold/layout.cc	2019-06-24 14:41:40.054517479 +0100
a6dfc0
@@ -868,6 +868,7 @@ Layout::get_output_section(const char* n
a6dfc0
 		  && (same_name->flags() & elfcpp::SHF_TLS) == 0)
a6dfc0
 		os = same_name;
a6dfc0
 	    }
a6dfc0
+#if 0 /* BZ 1722715, PR 17556.  */
a6dfc0
 	  else if ((flags & elfcpp::SHF_TLS) == 0)
a6dfc0
 	    {
a6dfc0
 	      elfcpp::Elf_Xword zero_flags = 0;
a6dfc0
@@ -878,6 +879,7 @@ Layout::get_output_section(const char* n
a6dfc0
 	      if (p != this->section_name_map_.end())
a6dfc0
 		os = p->second;
a6dfc0
 	    }
a6dfc0
+#endif
a6dfc0
 	}
a6dfc0
 
a6dfc0
       if (os == NULL)
a6dfc0
diff -rup binutils.orig/gold/object.cc binutils-2.32/gold/object.cc
a6dfc0
--- binutils.orig/gold/object.cc	2019-06-24 14:37:36.012086906 +0100
a6dfc0
+++ binutils-2.32/gold/object.cc	2019-06-24 14:39:59.287165501 +0100
a6dfc0
@@ -1644,6 +1644,13 @@ Sized_relobj_file<size, big_endian>::do_
a6dfc0
 	      omit[i] = true;
a6dfc0
 	    }
a6dfc0
 
a6dfc0
+	  // Skip empty sections without flags.
a6dfc0
+	  if (!(shdr.get_sh_flags() & ~elfcpp::SHF_GROUP)
a6dfc0
+	      && !shdr.get_sh_size())
a6dfc0
+	    {
a6dfc0
+	      omit[i] = true;
a6dfc0
+	    }
a6dfc0
+
a6dfc0
 	  bool discard = omit[i];
a6dfc0
 	  if (!discard)
a6dfc0
 	    {