Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | From 6587e7b8e7730dda20d8c47cabe9f7f8397efa3c Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Fri, 31 Mar 2017 11:42:03 -0700 |
| 4 | Subject: [PATCH 13/15] Detect 64-bit MIPS targets |
| 5 | |
| 6 | Add mips64 target triplets and default to N64 |
| 7 | |
| 8 | Upstream-Status: Submitted |
| 9 | https://sourceware.org/ml/binutils/2016-08/msg00048.html |
| 10 | |
| 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 12 | --- |
| 13 | gold/configure.tgt | 14 ++++++++++++++ |
| 14 | 1 file changed, 14 insertions(+) |
| 15 | |
| 16 | diff --git a/gold/configure.tgt b/gold/configure.tgt |
| 17 | index 3e066edaa8..caf130ceda 100644 |
| 18 | --- a/gold/configure.tgt |
| 19 | +++ b/gold/configure.tgt |
| 20 | @@ -153,6 +153,13 @@ aarch64*-*) |
| 21 | targ_big_endian=false |
| 22 | targ_extra_big_endian=true |
| 23 | ;; |
| 24 | +mips*64*el*-*-*|mips*64*le*-*-*) |
| 25 | + targ_obj=mips |
| 26 | + targ_machine=EM_MIPS_RS3_LE |
| 27 | + targ_size=64 |
| 28 | + targ_big_endian=false |
| 29 | + targ_extra_big_endian=true |
| 30 | + ;; |
| 31 | mips*el*-*-*|mips*le*-*-*) |
| 32 | targ_obj=mips |
| 33 | targ_machine=EM_MIPS_RS3_LE |
| 34 | @@ -160,6 +167,13 @@ mips*el*-*-*|mips*le*-*-*) |
| 35 | targ_big_endian=false |
| 36 | targ_extra_big_endian=true |
| 37 | ;; |
| 38 | +mips*64*-*-*) |
| 39 | + targ_obj=mips |
| 40 | + targ_machine=EM_MIPS |
| 41 | + targ_size=64 |
| 42 | + targ_big_endian=true |
| 43 | + targ_extra_big_endian=false |
| 44 | + ;; |
| 45 | mips*-*-*) |
| 46 | targ_obj=mips |
| 47 | targ_machine=EM_MIPS |
| 48 | -- |
| 49 | 2.20.1 |
| 50 | |