From: Sebastian Pop Date: Thu, 3 Dec 2020 17:35:18 +0000 (+0000) Subject: disable --with-{cpu,arch,tune}-32 X-Git-Tag: releases/gcc-10.3.0~514 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62b49338f9d3f96cc2306bfe9c6bb9a73851052d;p=thirdparty%2Fgcc.git disable --with-{cpu,arch,tune}-32 gcc/ * config.gcc (aarch64*-*-*): Remove --with-{cpu,arch,tune}-32 flags. --- diff --git a/gcc/config.gcc b/gcc/config.gcc index 380785b3f7b3..5af380a3cf40 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -4065,25 +4065,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/\+.*//'`