diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-30 06:28:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-31 13:29:48 +0000 |
commit | f4f9f2f4d97e43c579ec1cd97af3766c3f7c7c83 (patch) | |
tree | 350a5c1efd20f3e29a0b83c23cd9df0d686519ec /meta/recipes-devtools/gcc | |
parent | 691f7e4fa2897168abc4ddd59b1dd0eed045c8d4 (diff) | |
download | poky-f4f9f2f4d97e43c579ec1cd97af3766c3f7c7c83.tar.gz |
gcc, qemuppc: Explicitly disable forcing SPE flags
G4 does not have SPE, so we make that explicit in the tune files and
since we emulate G4 when building Qemu, we ensure it for qemuppc as
well.
GCC config for powerpc-linux is made to include SPE by default which is
equivalent if the tripet was powerpc-linux*spe, this forces gcc to
configure assembler to enable -mspe by default, when we do that then the
kernel fails to compile with binutils 2.26, since newer assembler is
smart to detect the tlbia instructions are not compatible with SPE and
hence the kernel build breaks rightly. We configure the kernel for G4 as
well where it enables tlbia instrucitons rightly so because it thinks
its being configured for power4. So we keep the options but do not force
-mspe down to assembler as default.
(From OE-Core rev: 7a51776a830167e43cbd185505f62f328704e271)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-5.3/0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-5.3/0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch b/meta/recipes-devtools/gcc/gcc-5.3/0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch index e7ca360ae5..57051871b3 100644 --- a/meta/recipes-devtools/gcc/gcc-5.3/0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch +++ b/meta/recipes-devtools/gcc/gcc-5.3/0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch | |||
@@ -19,11 +19,11 @@ Signed-off-by: Alexandru-Cezar Sardan <alexandru.sardan@freescale.com> | |||
19 | gcc/config.gcc | 9 ++++++++- | 19 | gcc/config.gcc | 9 ++++++++- |
20 | 1 file changed, 8 insertions(+), 1 deletion(-) | 20 | 1 file changed, 8 insertions(+), 1 deletion(-) |
21 | 21 | ||
22 | diff --git a/gcc/config.gcc b/gcc/config.gcc | 22 | Index: gcc-5.3.0/gcc/config.gcc |
23 | index dd0739d..3825bd5 100644 | 23 | =================================================================== |
24 | --- a/gcc/config.gcc | 24 | --- gcc-5.3.0.orig/gcc/config.gcc |
25 | +++ b/gcc/config.gcc | 25 | +++ gcc-5.3.0/gcc/config.gcc |
26 | @@ -2343,7 +2343,14 @@ powerpc-*-rtems*) | 26 | @@ -2346,7 +2346,14 @@ powerpc-*-rtems*) |
27 | tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-rtems rs6000/t-ppccomm" | 27 | tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-rtems rs6000/t-ppccomm" |
28 | ;; | 28 | ;; |
29 | powerpc*-*-linux*) | 29 | powerpc*-*-linux*) |
@@ -39,6 +39,14 @@ index dd0739d..3825bd5 100644 | |||
39 | extra_options="${extra_options} rs6000/sysv4.opt" | 39 | extra_options="${extra_options} rs6000/sysv4.opt" |
40 | tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm" | 40 | tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm" |
41 | extra_objs="$extra_objs rs6000-linux.o" | 41 | extra_objs="$extra_objs rs6000-linux.o" |
42 | -- | 42 | Index: gcc-5.3.0/gcc/config/rs6000/linuxspe.h |
43 | 2.6.3 | 43 | =================================================================== |
44 | 44 | --- gcc-5.3.0.orig/gcc/config/rs6000/linuxspe.h | |
45 | +++ gcc-5.3.0/gcc/config/rs6000/linuxspe.h | ||
46 | @@ -27,6 +27,3 @@ | ||
47 | #undef TARGET_DEFAULT | ||
48 | #define TARGET_DEFAULT MASK_STRICT_ALIGN | ||
49 | #endif | ||
50 | - | ||
51 | -#undef ASM_DEFAULT_SPEC | ||
52 | -#define ASM_DEFAULT_SPEC "-mppc -mspe -me500" | ||