diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-25 15:18:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-26 17:01:08 +0000 |
commit | 921d3aa667ce7df03012d9ecbb62fb91f60ebf07 (patch) | |
tree | 4cb6738622c50905588cead106a0172822eb79a3 /meta | |
parent | 8dd0a45c858290288e1a1fef046b5cfcf7ff6257 (diff) | |
download | poky-921d3aa667ce7df03012d9ecbb62fb91f60ebf07.tar.gz |
gcc: Drop mips default ABI patch
gcc-configure-common.inc already sets --with-abi=64 for our mips64
targets so this patch is no longer needed.
[YOCTO #14639]
(From OE-Core rev: e0010af733825ed1050fd3342cf3ef1c478df1a0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-11.2.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc/0010-MIPS64-Default-to-N64-ABI.patch | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-11.2.inc b/meta/recipes-devtools/gcc/gcc-11.2.inc index b4e4300c66..afb8f2df5c 100644 --- a/meta/recipes-devtools/gcc/gcc-11.2.inc +++ b/meta/recipes-devtools/gcc/gcc-11.2.inc | |||
@@ -36,7 +36,6 @@ SRC_URI = "\ | |||
36 | file://0005-optional-libstdc.patch \ | 36 | file://0005-optional-libstdc.patch \ |
37 | file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \ | 37 | file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \ |
38 | file://0009-cpp-honor-sysroot.patch \ | 38 | file://0009-cpp-honor-sysroot.patch \ |
39 | file://0010-MIPS64-Default-to-N64-ABI.patch \ | ||
40 | file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \ | 39 | file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \ |
41 | file://0012-gcc-Fix-argument-list-too-long-error.patch \ | 40 | file://0012-gcc-Fix-argument-list-too-long-error.patch \ |
42 | file://0014-libtool.patch \ | 41 | file://0014-libtool.patch \ |
diff --git a/meta/recipes-devtools/gcc/gcc/0010-MIPS64-Default-to-N64-ABI.patch b/meta/recipes-devtools/gcc/gcc/0010-MIPS64-Default-to-N64-ABI.patch deleted file mode 100644 index f385f8c5a2..0000000000 --- a/meta/recipes-devtools/gcc/gcc/0010-MIPS64-Default-to-N64-ABI.patch +++ /dev/null | |||
@@ -1,54 +0,0 @@ | |||
1 | From a2dc2fa4cc7e5d54544d4a7b6601eef79bc26cad Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 29 Mar 2013 09:23:08 +0400 | ||
4 | Subject: [PATCH] MIPS64: Default to N64 ABI | ||
5 | |||
6 | MIPS64 defaults to n32 ABI, this patch makes it | ||
7 | so that it defaults to N64 ABI | ||
8 | |||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | |||
11 | Upstream-Status: Inappropriate [OE config specific] | ||
12 | --- | ||
13 | gcc/config.gcc | 10 +++++----- | ||
14 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
15 | |||
16 | diff --git a/gcc/config.gcc b/gcc/config.gcc | ||
17 | index 3ec7582f5dd..a046fa6945c 100644 | ||
18 | --- a/gcc/config.gcc | ||
19 | +++ b/gcc/config.gcc | ||
20 | @@ -2543,29 +2543,29 @@ mips*-*-linux*) # Linux MIPS, either endian. | ||
21 | default_mips_arch=mips32 | ||
22 | ;; | ||
23 | mips64el-st-linux-gnu) | ||
24 | - default_mips_abi=n32 | ||
25 | + default_mips_abi=64 | ||
26 | tm_file="${tm_file} mips/st.h" | ||
27 | tmake_file="${tmake_file} mips/t-st" | ||
28 | enable_mips_multilibs="yes" | ||
29 | ;; | ||
30 | mips64octeon*-*-linux*) | ||
31 | - default_mips_abi=n32 | ||
32 | + default_mips_abi=64 | ||
33 | tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\"" | ||
34 | target_cpu_default=MASK_SOFT_FLOAT_ABI | ||
35 | enable_mips_multilibs="yes" | ||
36 | ;; | ||
37 | mipsisa64r6*-*-linux*) | ||
38 | - default_mips_abi=n32 | ||
39 | + default_mips_abi=64 | ||
40 | default_mips_arch=mips64r6 | ||
41 | enable_mips_multilibs="yes" | ||
42 | ;; | ||
43 | mipsisa64r2*-*-linux*) | ||
44 | - default_mips_abi=n32 | ||
45 | + default_mips_abi=64 | ||
46 | default_mips_arch=mips64r2 | ||
47 | enable_mips_multilibs="yes" | ||
48 | ;; | ||
49 | mips64*-*-linux* | mipsisa64*-*-linux*) | ||
50 | - default_mips_abi=n32 | ||
51 | + default_mips_abi=64 | ||
52 | enable_mips_multilibs="yes" | ||
53 | ;; | ||
54 | esac | ||