From c9bf82c94ad549c34effbb15ef2988750d4f344a Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 7 Nov 2007 14:52:44 +0000 Subject: [PATCH] * bfd/elfxx-mips.c (_bfd_mips_elf_fake_sections): Force SHF_MIPS_NOSTRIP on .debug_frame for Irix. --- bfd/ChangeLog | 5 +++++ bfd/elfxx-mips.c | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b42e0c921..b05c8eefe 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2007-11-07 Olivier Hainque + + * bfd/elfxx-mips.c (_bfd_mips_elf_fake_sections): Force + SHF_MIPS_NOSTRIP on .debug_frame for Irix. + 2007-11-06 Alan Modra * elf64-ppc.c (ppc64_elf_check_relocs): Don't refcount tlsld_got here.. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index b0e8a6290..c571077fa 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -5672,7 +5672,15 @@ _bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec) hdr->sh_flags |= SHF_MIPS_NOSTRIP; } else if (CONST_STRNEQ (name, ".debug_")) - hdr->sh_type = SHT_MIPS_DWARF; + { + hdr->sh_type = SHT_MIPS_DWARF; + + /* Irix facilities such as libexc expect a single .debug_frame + per executable, the system ones have NOSTRIP set and the linker + doesn't merge sections with different flags so ... */ + if (SGI_COMPAT (abfd) && CONST_STRNEQ (name, ".debug_frame")) + hdr->sh_flags |= SHF_MIPS_NOSTRIP; + } else if (strcmp (name, ".MIPS.symlib") == 0) { hdr->sh_type = SHT_MIPS_SYMBOL_LIB; -- 2.11.4.GIT