aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorSebastian Pop <spop@amazon.com>2020-12-03 17:35:18 +0000
committerSebastian Pop <spop@amazon.com>2020-12-14 17:32:23 +0000
commite63ae8c083a3218400206b80d4eedd9950fc5d3f (patch)
tree159daf079d08b7a9819a8cac5c520cead015aa6a /gcc
parent4dc486b6ba9362f45fe8252b91d0f5c03d85a0d0 (diff)
downloadgcc-e63ae8c083a3218400206b80d4eedd9950fc5d3f.zip
gcc-e63ae8c083a3218400206b80d4eedd9950fc5d3f.tar.gz
gcc-e63ae8c083a3218400206b80d4eedd9950fc5d3f.tar.bz2
disable --with-{cpu,arch,tune}-32
gcc/ * config.gcc (aarch64*-*-*): Remove --with-{cpu,arch,tune}-32 flags.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config.gcc11
1 files changed, 1 insertions, 10 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 50c10dc..a54f675 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -4099,25 +4099,16 @@ fi
supported_defaults=
case "${target}" in
aarch64*-*-*)
- supported_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64"
+ supported_defaults="abi cpu cpu_64 arch arch_64 tune tune_64"
if test x$with_cpu_64 != x && test x$with_cpu = x; then
with_cpu=$with_cpu_64
fi
- if test x$with_cpu_32 != x && test x$with_cpu = x; then
- with_cpu=$with_cpu_32
- fi
if test x$with_arch_64 != x && test x$with_arch = x; then
with_arch=$with_arch_64
fi
- if test x$with_arch_32 != x && test x$with_arch = x; then
- with_arch=$with_arch_32
- fi
if test x$with_tune_64 != x && test x$with_tune = x; then
with_tune=$with_tune_64
fi
- if test x$with_tune_32 != x && test x$with_tune = x; then
- with_tune=$with_tune_32
- fi
for which in cpu arch tune; do
eval "val=\$with_$which"
base_val=`echo $val | sed -e 's/\+.*//'`