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] MIPS/LD: Fix little-endian `mti' and `img' ELF emulations


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

commit f21cd979851fb422b8c01ee26b85b0273885350e
Author: Maciej W. Rozycki <macro@imgtec.com>
Date:   Fri Nov 20 16:11:22 2015 +0000

    MIPS/LD: Fix little-endian `mti' and `img' ELF emulations
    
    Make the little-endian emulation the default for the `mips*el-mti-elf*'
    and `mips*el-img-elf*' targets, fixing the issue of LD rejecting, in its
    default configuration, object files produced by GAS also in its default
    configuration.
    
    	ld/
    	* configure.tgt <mips*el-mti-elf*, mips*el-img-elf*>: Add
    	targets.

Diff:
---
 ld/ChangeLog     | 5 +++++
 ld/configure.tgt | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index d6bf9ab..c2fabd3 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-20  Maciej W. Rozycki  <macro@imgtec.com>
+
+	* configure.tgt <mips*el-mti-elf*, mips*el-img-elf*>: Add
+	targets.
+
 2015-11-19  Alan Modra  <amodra@gmail.com>
 
 	PR ld/19264
diff --git a/ld/configure.tgt b/ld/configure.tgt
index 6b6bbf2..27742c0 100644
--- a/ld/configure.tgt
+++ b/ld/configure.tgt
@@ -490,7 +490,8 @@ mips*vr4100el-*-elf*)	targ_emul=elf32l4300 ;;
 mips*vr4100-*-elf*)	targ_emul=elf32b4300 ;;
 mips*vr5000el-*-elf*)	targ_emul=elf32l4300 ;;
 mips*vr5000-*-elf*)	targ_emul=elf32b4300 ;;
-mips*el-sde-elf*)	targ_emul=elf32ltsmip
+mips*el-sde-elf* | mips*el-mti-elf* | mips*el-img-elf*)
+			targ_emul=elf32ltsmip
 			targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip" ;;
 mips*-sde-elf* | mips*-mti-elf* | mips*-img-elf*)
 			targ_emul=elf32btsmip


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