mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 05:03:03 +01:00
Additionally cherry-pick 5ffeba4a09 Revert "PowerPC PLT speculative execution barriers" b01452b1d4 [PR22764][LD][AARCH64]Allow R_AARCH64_ABS16 and R_AARCH64_ABS32 against absolution symbol or undefine symbol in shared object. a985e9b9de Import patch from mainline to remove PROVODE qualifiers around definitions of __CTOR_LIST__ and __DTOR_LIST__ in PE linker scripts. eec4607fc5 Add support for DWARF-4 line number tables. (From OE-Core rev: c708506eb9dbb4b817f563fbaacb80eee0b5b301) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
1.2 KiB
Diff
51 lines
1.2 KiB
Diff
From 7dfbd6889d868a09d695dd2736104848c1a9c9c3 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 14/15] 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 8aef22a318..7030026ffa 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.16.1
|
|
|