* emulparams/elf64ppc.sh (GOT): Fix for shell brace matching.

This commit is contained in:
Alan Modra 2003-07-28 03:33:48 +00:00
parent 9175bfc0f5
commit f37f3db78f
2 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2003-07-28 Alan Modra <amodra@bigpond.net.au>
* emulparams/elf64ppc.sh (GOT): Fix for shell brace matching.
* emulparams/elf64ppc.sh (GOT): Don't merge .toc into .got for ld -r.
2003-07-27 Alan Modra <amodra@bigpond.net.au>

View File

@ -18,9 +18,15 @@ OTHER_BSS_SYMBOLS="
.tocbss ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.tocbss)}"
OTHER_PLT_RELOC_SECTIONS="
.rela.tocbss ${RELOCATING-0} : { *(.rela.tocbss) }"
GOT="
.got ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.got${RELOCATING+ .toc}) }
${RELOCATING-.toc 0 : { *(.toc) }}"
if test x${RELOCATING+set} = xset; then
GOT="
.got ALIGN(8) : { *(.got .toc) }"
else
GOT="
.got 0 : { *(.got) }
.toc 0 : { *(.toc) }"
fi
OTHER_GOT_RELOC_SECTIONS="
.rela.toc ${RELOCATING-0} : { *(.rela.toc) }"
OTHER_READWRITE_SECTIONS="