summaryrefslogtreecommitdiffstats
path: root/source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch')
-rw-r--r--source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch b/source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch
new file mode 100644
index 000000000..63dba2b4b
--- /dev/null
+++ b/source/d/binutils/patches/binutils-gold-mismatched-section-flags.patch
@@ -0,0 +1,19 @@
+diff -rup binutils.orig/gold/layout.cc binutils-2.32/gold/layout.cc
+--- binutils.orig/gold/layout.cc 2019-06-24 14:37:36.013086899 +0100
++++ binutils-2.32/gold/layout.cc 2019-06-24 14:41:40.054517479 +0100
+@@ -868,6 +868,7 @@ Layout::get_output_section(const char* n
+ && (same_name->flags() & elfcpp::SHF_TLS) == 0)
+ os = same_name;
+ }
++#if 0 /* BZ 1722715, PR 17556. */
+ else if ((flags & elfcpp::SHF_TLS) == 0)
+ {
+ elfcpp::Elf_Xword zero_flags = 0;
+@@ -878,6 +879,7 @@ Layout::get_output_section(const char* n
+ if (p != this->section_name_map_.end())
+ os = p->second;
+ }
++#endif
+ }
+
+ if (os == NULL)