From 9810d34d76d19f63d4bbe7390fa36ceb85d10cde Mon Sep 17 00:00:00 2001 From: Sasa Stankovic Date: Mon, 23 Jun 2014 11:52:34 -0700 Subject: gold/ * mips.cc: New file. * Makefile.am (TARGETSOURCES): Add mips.cc (ALL_TARGETOBJS): Add mips.$(OBJEXT) * configure.tgt: Add entries for mips*. * configure.ac: Likewise. * Makefile.in: Regenerate. * configure: Likewise. --- gold/configure.tgt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'gold/configure.tgt') diff --git a/gold/configure.tgt b/gold/configure.tgt index aad4f54..93d622d 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -144,6 +144,20 @@ arm*-*-*) targ_big_endian=false targ_extra_big_endian=true ;; +mips*el*-*-*|mips*le*-*-*) + targ_obj=mips + targ_machine=EM_MIPS_RS3_LE + targ_size=32 + targ_big_endian=false + targ_extra_big_endian=true + ;; +mips*-*-*) + targ_obj=mips + targ_machine=EM_MIPS + targ_size=32 + targ_big_endian=true + targ_extra_big_endian=false + ;; *) targ_obj=UNKNOWN ;; -- cgit v1.1