mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
binutils: Detect 64bit mips target for gold
(From OE-Core rev: b007eb12a80d81c2aa498941961df3f2899ece7e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -34,6 +34,7 @@ SRC_URI = "\
|
|||||||
file://0013-Add-support-for-Netlogic-XLP.patch \
|
file://0013-Add-support-for-Netlogic-XLP.patch \
|
||||||
file://0014-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch \
|
file://0014-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch \
|
||||||
file://0015-sync-with-OE-libtool-changes.patch \
|
file://0015-sync-with-OE-libtool-changes.patch \
|
||||||
|
file://0016-Detect-64-bit-MIPS-targets.patch \
|
||||||
"
|
"
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
From c3ebde5d8cc3b0092966b4d725cad7cfd074fd8d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Fri, 31 Mar 2017 11:42:03 -0700
|
||||||
|
Subject: [PATCH 16/16] Detect 64-bit MIPS targets
|
||||||
|
|
||||||
|
Add mips64 target triplets and default to N64
|
||||||
|
|
||||||
|
Upstream-Status: Submitted
|
||||||
|
https://sourceware.org/ml/binutils/2016-08/msg00048.html
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
gold/configure.tgt | 14 ++++++++++++++
|
||||||
|
1 file changed, 14 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/gold/configure.tgt b/gold/configure.tgt
|
||||||
|
index 3d63027297..c1f92a1360 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.12.1
|
||||||
|
|
||||||
Reference in New Issue
Block a user