diff options
author | Alan Modra <amodra@gmail.com> | 2002-09-24 04:02:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-09-24 04:02:03 +0000 |
commit | 06143382c6e7a69898523d5c68bedefe5b22cac4 (patch) | |
tree | 7db01204d92bf16e6249ed4b94c2e4a8c61952d4 /ld/scripttempl/aix.sc | |
parent | 52271982a769099f6f7f8db8eee700fe09490dbe (diff) | |
download | gdb-06143382c6e7a69898523d5c68bedefe5b22cac4.zip gdb-06143382c6e7a69898523d5c68bedefe5b22cac4.tar.gz gdb-06143382c6e7a69898523d5c68bedefe5b22cac4.tar.bz2 |
* emulparams/elf64ppc.sh (DATA_ADDR): Define.
* emulparams/elf64_aix.sh (DATA_ADDR): Don't use a fixed address
for start of .data, instead align up to 256M boundary.
* scripttempl/aix.sc: Likewise.
Diffstat (limited to 'ld/scripttempl/aix.sc')
-rw-r--r-- | ld/scripttempl/aix.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/aix.sc b/ld/scripttempl/aix.sc index ce67f65..cdd3eac 100644 --- a/ld/scripttempl/aix.sc +++ b/ld/scripttempl/aix.sc @@ -24,7 +24,7 @@ SECTIONS *(.tb) ${RELOCATING+PROVIDE (_etext = .);} } - . = 0x20000000; + . = ALIGN (0x10000000); .data . : { ${RELOCATING+PROVIDE (_data = .);} *(.data) |