diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-03-31 11:57:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-01 23:28:19 +0100 |
commit | 5a85d39c9d5502aabc2dde20f2a16bf7ac9f2d22 (patch) | |
tree | 8e758a7c280fbdf11a90388563ca8ce4f9791d62 /meta/recipes-devtools/binutils | |
parent | 7d369d794a30d21b1b2f08872130d52bba945d76 (diff) | |
download | poky-5a85d39c9d5502aabc2dde20f2a16bf7ac9f2d22.tar.gz |
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>
Diffstat (limited to 'meta/recipes-devtools/binutils')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils-2.28.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/binutils/binutils/0016-Detect-64-bit-MIPS-targets.patch | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.28.inc b/meta/recipes-devtools/binutils/binutils-2.28.inc index fcf30357f6..76b81b04ca 100644 --- a/meta/recipes-devtools/binutils/binutils-2.28.inc +++ b/meta/recipes-devtools/binutils/binutils-2.28.inc | |||
@@ -34,6 +34,7 @@ SRC_URI = "\ | |||
34 | file://0013-Add-support-for-Netlogic-XLP.patch \ | 34 | file://0013-Add-support-for-Netlogic-XLP.patch \ |
35 | file://0014-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch \ | 35 | file://0014-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch \ |
36 | file://0015-sync-with-OE-libtool-changes.patch \ | 36 | file://0015-sync-with-OE-libtool-changes.patch \ |
37 | file://0016-Detect-64-bit-MIPS-targets.patch \ | ||
37 | " | 38 | " |
38 | S = "${WORKDIR}/git" | 39 | S = "${WORKDIR}/git" |
39 | 40 | ||
diff --git a/meta/recipes-devtools/binutils/binutils/0016-Detect-64-bit-MIPS-targets.patch b/meta/recipes-devtools/binutils/binutils/0016-Detect-64-bit-MIPS-targets.patch new file mode 100644 index 0000000000..1b2eb8485c --- /dev/null +++ b/meta/recipes-devtools/binutils/binutils/0016-Detect-64-bit-MIPS-targets.patch | |||
@@ -0,0 +1,50 @@ | |||
1 | From c3ebde5d8cc3b0092966b4d725cad7cfd074fd8d 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 16/16] 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 3d63027297..c1f92a1360 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.12.1 | ||
50 | |||