Allow powerpc64le-linux-gnu toolchain to support big endian targets as well.

PR target/19985
	* configure.tgt: Include big endian PPC64 emulations with little
	endian PPC64 targets.
This commit is contained in:
Nick Clifton 2016-04-25 17:25:27 +01:00
parent 0e03d18a4e
commit 731bb67af7
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2016-04-25 Nick Clifton <nickc@redhat.com>
PR target/19985
* configure.tgt: Include big endian PPC64 emulations with little
endian PPC64 targets.
2016-04-25 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
* scripttempl/avrtiny.sc (.text): Do not set LMA to zero.

View File

@ -623,10 +623,13 @@ powerpc*-*-elf* | powerpc*-*-eabi* | powerpc*-*-sysv* \
esac
case "${targ}" in
powerpc*le-*)
for z in targ_emul targ_extra_emuls targ_extra_libpath targ64_extra_emuls targ64_extra_libpath
# PR 19985: Include big endian emulations.
for z in targ_extra_emuls targ_extra_libpath targ64_extra_emuls targ64_extra_libpath
do
eval ${z}=\"`eval echo \\$${z} | sed -e 's/ppc/lppc/g'`\"
eval ${z}+=\" `eval echo \\$${z} | sed -e 's/ppc/lppc/g'`\"
done
eval targ_extra_emuls+=\" \$targ_emul\"
eval targ_emul=\"`eval echo \\$targ_emul | sed -e 's/ppc/lppc/g'`\"
esac ;;
powerpc-*-nto*) targ_emul=elf32ppcnto ;;
powerpcle-*-nto*) targ_emul=elf32lppcnto ;;