summaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-03-20 10:22:37 +1030
committerAlan Modra <amodra@gmail.com>2021-03-20 10:35:18 +1030
commit15407e7e0d42a46de5534df22eec933fc45178a3 (patch)
tree82ce351900575c29f868e779a046e98d803ac73c /bfd/elf.c
parent6536577167960d0d98ee5d0ccbb3ba70c2db2f9a (diff)
downloadbinutils-gdb-15407e7e0d42a46de5534df22eec933fc45178a3.tar.gz
DWARF LTO debug sections vs. .stabstr
The exception for debug sections in clearing SEC_EXCLUDE when relocatable was really for one specific debug section, so let's make it do just that. bfd/ PR 27590 * elf.c (_bfd_elf_make_section_from_shdr): Remove SHF_EXCLUDE test for .gnu.debuglto*. ld/ PR 27590 * ldlang.c (lang_gc_sections): Clear SEC_EXCLUDE when relocatable for all sections except .stabstr.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index 7bd12dfbf37..381951da12c 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -1085,10 +1085,7 @@ _bfd_elf_make_section_from_shdr (bfd *abfd,
if (name [0] == '.')
{
if (strncmp (name, ".debug", 6) == 0
- /* NB: Treate .gnu.debuglto_.debug_ section as debugging
- section unless it is marked with SHF_EXCLUDE. */
- || ((flags & SEC_EXCLUDE) == 0
- && strncmp (name, ".gnu.debuglto_.debug_", 21) == 0)
+ || strncmp (name, ".gnu.debuglto_.debug_", 21) == 0
|| strncmp (name, ".gnu.linkonce.wi.", 17) == 0
|| strncmp (name, ".zdebug", 7) == 0)
flags |= SEC_DEBUGGING | SEC_ELF_OCTETS;