mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +01:00
Details of changelog [1] Removing bfd/ld patch to enable PE targets, instead use specific emulations via --enable-targets for x86_64 Re-arrange/forward-port patches and upgrade libctf configure to libtool 2.4 patch rpaths are no longer emitted into elfedit/readelf therefore no need of chrpath anymore Instead of pre-generating configure scripts and house them in libtool patch, generate them during configure. This also ensures that we do not patch configure directly but rather the sources which generate it Package newly added libctf library [1] https://lists.gnu.org/archive/html/info-gnu/2020-02/msg00000.html (From OE-Core rev: 82f7d5cfc2ab02f39b69c0f8697d660936422d4a) Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Christopher Clark <christopher.clark6@baesystems.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
1.2 KiB
Diff
48 lines
1.2 KiB
Diff
From 2f7f2389764ef1d699f6ad32057314024b7e84e7 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] 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 aa7ec552ae..470515062e 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
|