diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-02-09 21:25:06 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-02-13 20:46:27 +1300 |
commit | c5565f175aa0d5b25d47c839610bab6f9ee999a1 (patch) | |
tree | 43b53295aca891fef6432bebecec50f4e92798db /config | |
parent | 30fb23dd895f82e71f13cd8a8d6a90d165f5090b (diff) | |
download | crosstool-ng-c5565f175aa0d5b25d47c839610bab6f9ee999a1.tar.gz crosstool-ng-c5565f175aa0d5b25d47c839610bab6f9ee999a1.tar.bz2 crosstool-ng-c5565f175aa0d5b25d47c839610bab6f9ee999a1.zip |
powerpc: Allow GCC 8.5 for SPE ABI
Support for the SPE ABI was removed in GCC 9. Update the select to
GCC_REQUIRE_older_than_9 so that GCC 8.5 can be selected.
Fixes #1349, fixes #1666
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/arch/powerpc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/arch/powerpc.in b/config/arch/powerpc.in index 73cdf757..bb75ac0e 100644 --- a/config/arch/powerpc.in +++ b/config/arch/powerpc.in @@ -43,7 +43,7 @@ config ARCH_powerpc_ABI_EABI config ARCH_powerpc_ABI_SPE bool prompt "SPE" - select GCC_REQUIRE_8_or_older + select GCC_REQUIRE_older_than_9 select GLIBC_REQUIRE_2_29_or_older help Add support for the Signal Processing Engine. This will set up |