From c1fd659837e15e4fd23fe91d8a69fcd64b32e9c1 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Tue, 22 Oct 2002 22:17:11 +0000 Subject: [PATCH] * elfxx-mips.c (_bfd_mips_elf_modify_segment_map): Don't move the options section into a separate section unless IRIX 6 compatibility is enabled. --- bfd/ChangeLog | 6 ++++++ bfd/elfxx-mips.c | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f00325e12d4..08efbe2f86d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2002-10-22 Alexandre Oliva + + * elfxx-mips.c (_bfd_mips_elf_modify_segment_map): Don't move + the options section into a separate section unless IRIX 6 + compatibility is enabled. + 2002-10-22 Alexandre Oliva * elflink.h (struct elf_link_sort_rela): Turn rel and rela diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index ec0b54b001a..bc81458987a 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -6137,7 +6137,12 @@ _bfd_mips_elf_modify_segment_map (abfd) .dynamic end up in PT_DYNAMIC. However, we do have to insert a PT_OPTIONS segment immediately following the program header table. */ - if (NEWABI_P (abfd)) + if (NEWABI_P (abfd) + /* On non-IRIX6 new abi, we'll have already created a segment + for this section, so don't create another. I'm not sure this + is not also the case for IRIX 6, but I can't test it right + now. */ + && IRIX_COMPAT (abfd) == ict_irix6) { for (s = abfd->sections; s; s = s->next) if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS) -- 2.30.2