summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-10-23 12:34:57 +0000
committerNick Clifton <nickc@redhat.com>2002-10-23 12:34:57 +0000
commit0d270f6874d9a6d674e7ce675f2520bf8349dd89 (patch)
tree5c2ea584d59d6906c863c69189eca76a2b3e4d40
parente9ffef4230f217e88adfac71b7500cc9ba2519e2 (diff)
downloadgdb-0d270f6874d9a6d674e7ce675f2520bf8349dd89.tar.gz
Force DT_FLAGS to always be set. Required by HPUX 11.00 patch PHSS_26559.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf64-hppa.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 08efbe2f86d..8e359fa8da9 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-23 Ross Alexander <ross.alexander@uk.neceur.com>
+
+ * elf64-hppa.c: Force DT_FLAGS to always be set. Required by
+ HPUX 11.00 patch PHSS_26559.
+
2002-10-22 Alexandre Oliva <aoliva@redhat.com>
* elfxx-mips.c (_bfd_mips_elf_modify_segment_map): Don't move
diff --git a/bfd/elf64-hppa.c b/bfd/elf64-hppa.c
index aef822a02f2..3c8e00f2b4a 100644
--- a/bfd/elf64-hppa.c
+++ b/bfd/elf64-hppa.c
@@ -1855,6 +1855,11 @@ elf64_hppa_size_dynamic_sections (output_bfd, info)
return false;
}
+ /* Force DT_FLAGS to always be set.
+ Required by HPUX 11.00 patch PHSS_26559. */
+ if (!add_dynamic_entry (DT_FLAGS, (info)->flags))
+ return false;
+
if (plt)
{
if (!add_dynamic_entry (DT_PLTRELSZ, 0)