This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Allow powerpc64le-linux-gnu toolchain to support big endian targets as well.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=731bb67af7ba357164095a035749e3aaa9ac1f4f

commit 731bb67af7ba357164095a035749e3aaa9ac1f4f
Author: Nick Clifton <nickc@redhat.com>
Date:   Mon Apr 25 17:25:27 2016 +0100

    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.

Diff:
---
 ld/ChangeLog     | 6 ++++++
 ld/configure.tgt | 7 +++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 4f20b5c..4dd2cbc 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -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.
diff --git a/ld/configure.tgt b/ld/configure.tgt
index aabcfc0..da89e2b 100644
--- a/ld/configure.tgt
+++ b/ld/configure.tgt
@@ -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 ;;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]