aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Sawdey <acsawdey@linux.ibm.com>2020-06-23 13:12:52 -0500
committerGiuliano Belinassi <giuliano.belinassi@usp.br>2020-08-17 13:14:38 -0300
commitaff6d461dcd5659dceef255e76d64b2f2e46b03c (patch)
treeb534dc34cf3cd2d695d35a527d4aa3c1744ad4ff
parentfe0ea182f878ee8b31305380ea651002d57b4f8e (diff)
downloadgcc-aff6d461dcd5659dceef255e76d64b2f2e46b03c.zip
gcc-aff6d461dcd5659dceef255e76d64b2f2e46b03c.tar.gz
gcc-aff6d461dcd5659dceef255e76d64b2f2e46b03c.tar.bz2
Allow --with-cpu=power10
Update config.gcc so that we can use --with-cpu=power10. Also remove "future" from the 64-bit check as Segher suggests. * config.gcc: Identify power10 as a 64-bit processor and as valid for --with-cpu and --with-tune.
-rw-r--r--gcc/config.gcc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 365263a..c046068 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -514,7 +514,7 @@ powerpc*-*-*)
extra_headers="${extra_headers} ppu_intrinsics.h spu2vmx.h vec_types.h si2vmx.h"
extra_headers="${extra_headers} amo.h"
case x$with_cpu in
- xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456789]|xpower6x|xrs64a|xcell|xa2|xe500mc64|xe5500|xe6500|xfuture)
+ xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456789]|xpower10|xpower6x|xrs64a|xcell|xa2|xe500mc64|xe5500|xe6500)
cpu_is_64bit=yes
;;
esac
@@ -4912,7 +4912,7 @@ case "${target}" in
eval "with_$which=405"
;;
"" | common | native \
- | power[3456789] | power5+ | power6x \
+ | power[3456789] | power10 | power5+ | power6x \
| powerpc | powerpc64 | powerpc64le \
| rs64 \
| 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \