diff options
author | Jack Carter <jcarter@mips.com> | 2014-02-18 16:23:48 -0800 |
---|---|---|
committer | Jack Carter <jcarter@mips.com> | 2014-02-18 16:23:48 -0800 |
commit | 5db3e65d39c4018e88c3e7bba089fa9df11e7617 (patch) | |
tree | 4f0097b5d75c4772fc949b8a32322e423d90317d /bfd/elfxx-mips.c | |
parent | c17ef0d5d26a5374b70f33689042ec2f6a77e4fa (diff) | |
download | gdb-5db3e65d39c4018e88c3e7bba089fa9df11e7617.zip gdb-5db3e65d39c4018e88c3e7bba089fa9df11e7617.tar.gz gdb-5db3e65d39c4018e88c3e7bba089fa9df11e7617.tar.bz2 |
The PT_DYNAMIC segment was being hard coded to have read, write, and
execute permission regardless of the underlying PT_LOAD segment permissions.
Deleting this code allows the default linker behavior which is to set the
dynamic segment to the same permissions as the sections that make it up.
This change alters one existing test case to check the segment flags for
PT_DYNAMIC.
bfd/ChangeLog
* elfxx-mips.c(_bfd_mips_elf_modify_segment_map): Deleted hard coding of
PT_DYNAMIC segment flags.
ld/testsuite/ChangeLog
* ld-mips-elf/pic-and-nonpic-3a.sd: Check DYNAMIC segment flags.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index f51845b..9011b6d 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -11919,18 +11919,6 @@ _bfd_mips_elf_modify_segment_map (bfd *abfd, if ((*pm)->p_type == PT_DYNAMIC) break; m = *pm; - if (m != NULL && IRIX_COMPAT (abfd) == ict_none) - { - /* For a normal mips executable the permissions for the PT_DYNAMIC - segment are read, write and execute. We do that here since - the code in elf.c sets only the read permission. This matters - sometimes for the dynamic linker. */ - if (bfd_get_section_by_name (abfd, ".dynamic") != NULL) - { - m->p_flags = PF_R | PF_W | PF_X; - m->p_flags_valid = 1; - } - } /* GNU/Linux binaries do not need the extended PT_DYNAMIC section. glibc's dynamic linker has traditionally derived the number of tags from the p_filesz field, and sometimes allocates stack |