diff options
author | Alexey Neyman <stilor@att.net> | 2020-03-04 11:41:04 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-03-04 11:41:04 -0800 |
commit | 29422b2eda308526cd568507109b0a222eb09449 (patch) | |
tree | 0df58f8e84ed71ae8c772df6ebb7055bb201db18 /config/arch | |
parent | 86062515858aefe5f1f66b2a315aafa458999ede (diff) | |
download | crosstool-ng-29422b2eda308526cd568507109b0a222eb09449.tar.gz crosstool-ng-29422b2eda308526cd568507109b0a222eb09449.tar.bz2 crosstool-ng-29422b2eda308526cd568507109b0a222eb09449.zip |
Disallow PPS SPE ABI
with GCC 9+ and GLIBC 2.30+, they no longer support it.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/arch')
-rw-r--r-- | config/arch/powerpc.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/arch/powerpc.in b/config/arch/powerpc.in index 83f0f77b..73cdf757 100644 --- a/config/arch/powerpc.in +++ b/config/arch/powerpc.in @@ -43,6 +43,8 @@ config ARCH_powerpc_ABI_EABI config ARCH_powerpc_ABI_SPE bool prompt "SPE" + select GCC_REQUIRE_8_or_older + select GLIBC_REQUIRE_2_29_or_older help Add support for the Signal Processing Engine. This will set up the toolchain so that it supports the SPE ABI extensions. This @@ -55,4 +57,6 @@ config ARCH_powerpc_ABI_SPE and "--enable-e500_double" to your CC_EXTRA_CONFIG_ARRAY, so you do not need to explicitly add them. + Support for SPE ABI has been removed in GCC 9. + endchoice |