aboutsummaryrefslogtreecommitdiff
path: root/bfd/ChangeLog
diff options
context:
space:
mode:
authorWill Newton <will.newton@linaro.org>2014-03-14 11:45:32 +0000
committerWill Newton <will.newton@linaro.org>2014-03-25 09:01:50 +0000
commitc955de363b91edba8a92877f97b1be68357d9582 (patch)
treeec54faa2f116cfd2a1f1c65720fc92e86ab52403 /bfd/ChangeLog
parent3e60bf4df86f323dde4281886a355589488149aa (diff)
downloadgdb-c955de363b91edba8a92877f97b1be68357d9582.zip
gdb-c955de363b91edba8a92877f97b1be68357d9582.tar.gz
gdb-c955de363b91edba8a92877f97b1be68357d9582.tar.bz2
bfd/elfnn-aarch64.c: Fix calculation of DT_RELASZ
The current code subtracts the size of the output section containing relplt from RELASZ. In some cases this will be the same output section as the dynamic relocs causing a value of zero to be output. Calculating the size from input sections seems to make more sense. bfd/ChangeLog: 2014-03-25 Will Newton <will.newton@linaro.org> * elfnn-aarch64.c (elfNN_aarch64_finish_dynamic_sections): Set value of DT_PLTRELSZ and DT_RELASZ based on the size of input sections rather than output sections. ld/testsuite/ChangeLog: 2014-03-25 Will Newton <will.newton@linaro.org> * ld-aarch64/aarch64-elf.exp: Add relasz dump test. * ld-aarch64/relasz.d: New file. * ld-aarch64/relasz.s: Likewise.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r--bfd/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index c60d19d..c719d24 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2014-03-25 Will Newton <will.newton@linaro.org>
+
+ * elfnn-aarch64.c (elfNN_aarch64_finish_dynamic_sections):
+ Set value of DT_PLTRELSZ and DT_RELASZ based on the size
+ of input sections rather than output sections.
+
2014-03-20 Will Newton <will.newton@linaro.org>
PR ld/16715