From a248c2673656268f95a02369dba442284c6ad6df Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Mon, 21 Sep 2020 10:45:07 +0100 Subject: [PATCH] gold-mips # DP: Fix gold on mips64 targets. # DP: Fix gold on mips64 targets. gold/ 2016-08-09 Aurelien Jarno * configure.tgt: Add mips64el*-*-*|mips64le*-*-* and mips64*-*-*. Gbp-Pq: Name gold-mips.diff --- gold/configure.tgt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gold/configure.tgt b/gold/configure.tgt index aa7ec552a..470515062 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -153,6 +153,13 @@ aarch64*-*) targ_big_endian=false targ_extra_big_endian=true ;; +mips*64*el*-*-*|mips*64*le*-*-*) + targ_obj=mips + targ_machine=EM_MIPS_RS3_LE + targ_size=64 + targ_big_endian=false + targ_extra_big_endian=true + ;; mips*el*-*-*|mips*le*-*-*) targ_obj=mips targ_machine=EM_MIPS_RS3_LE @@ -160,6 +167,13 @@ mips*el*-*-*|mips*le*-*-*) targ_big_endian=false targ_extra_big_endian=true ;; +mips*64*-*-*) + targ_obj=mips + targ_machine=EM_MIPS + targ_size=64 + targ_big_endian=true + targ_extra_big_endian=false + ;; mips*-*-*) targ_obj=mips targ_machine=EM_MIPS -- 2.30.2