summaryrefslogtreecommitdiff
path: root/ld/emulparams/elf64ppc.sh
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2005-11-18 04:26:29 +0000
committerAlan Modra <amodra@bigpond.net.au>2005-11-18 04:26:29 +0000
commit0edebf5aa4c6969a8597f7867611a701ac949a6b (patch)
tree04e6ddf2b2e356a44dfe8fcc9c7ab2052b067f7b /ld/emulparams/elf64ppc.sh
parente89c565e42233fab5ccfa2dad02f1bbf04395b29 (diff)
downloadbinutils-redhat-0edebf5aa4c6969a8597f7867611a701ac949a6b.tar.gz
* emulparams/elf64ppc.sh (.tocbss): Use new section alignment scheme.
(.got, .toc1, .opd): Likewise.
Diffstat (limited to 'ld/emulparams/elf64ppc.sh')
-rw-r--r--ld/emulparams/elf64ppc.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emulparams/elf64ppc.sh b/ld/emulparams/elf64ppc.sh
index c190b189f6..8285723fba 100644
--- a/ld/emulparams/elf64ppc.sh
+++ b/ld/emulparams/elf64ppc.sh
@@ -15,13 +15,13 @@ NOP=0x60000000
OTHER_TEXT_SECTIONS="*(.sfpr .glink)"
BSS_PLT=
OTHER_BSS_SYMBOLS="
- .tocbss ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.tocbss)}"
+ .tocbss ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { *(.tocbss)}"
OTHER_PLT_RELOC_SECTIONS="
.rela.tocbss ${RELOCATING-0} : { *(.rela.tocbss) }"
if test x${RELOCATING+set} = xset; then
GOT="
- .got ALIGN(8) : { *(.got .toc) }"
+ .got : ALIGN(8) { *(.got .toc) }"
else
GOT="
.got 0 : { *(.got) }
@@ -30,8 +30,8 @@ fi
OTHER_GOT_RELOC_SECTIONS="
.rela.toc ${RELOCATING-0} : { *(.rela.toc) }"
OTHER_READWRITE_SECTIONS="
- .toc1 ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.toc1) }
- .opd ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { KEEP (*(.opd)) }"
+ .toc1 ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { *(.toc1) }
+ .opd ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { KEEP (*(.opd)) }"
# Treat a host that matches the target with the possible exception of "64"
# in the name as if it were native.