aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/ppc64elf.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2004-01-09 05:36:30 +0000
committerAlan Modra <amodra@gmail.com>2004-01-09 05:36:30 +0000
commit8349035256b45f96828cf6e6f7ed6e44c1289668 (patch)
tree1ee8eb37168faf0cb017ea6366423edb9ba1ebae /ld/emultempl/ppc64elf.em
parent42b190adc91a72248aa914b2dcc33241e547281b (diff)
downloadgdb-8349035256b45f96828cf6e6f7ed6e44c1289668.zip
gdb-8349035256b45f96828cf6e6f7ed6e44c1289668.tar.gz
gdb-8349035256b45f96828cf6e6f7ed6e44c1289668.tar.bz2
* emultempl/ppc64elf.em (ppc_before_allocation): Clear cached
program_header_size.
Diffstat (limited to 'ld/emultempl/ppc64elf.em')
-rw-r--r--ld/emultempl/ppc64elf.em3
1 files changed, 3 insertions, 0 deletions
diff --git a/ld/emultempl/ppc64elf.em b/ld/emultempl/ppc64elf.em
index e6b24c9..5746f79 100644
--- a/ld/emultempl/ppc64elf.em
+++ b/ld/emultempl/ppc64elf.em
@@ -25,6 +25,7 @@ cat >>e${EMULATION_NAME}.c <<EOF
#include "ldctor.h"
#include "libbfd.h"
+#include "elf-bfd.h"
#include "elf64-ppc.h"
/* Fake input file for stubs. */
@@ -117,6 +118,8 @@ ppc_before_allocation (void)
return;
}
+ /* We must not cache anything from the preliminary sizing. */
+ elf_tdata (output_bfd)->program_header_size = 0;
lang_reset_memory_regions ();
}
}