From: Xianmiao Qu Date: Sun, 15 Jan 2023 02:04:35 +0000 (+0800) Subject: C-SKY: Support --with-float=softfp in configuration. X-Git-Tag: basepoints/gcc-14~2033 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e658e8157db372555a853c02824f5fc78709a5b1;p=thirdparty%2Fgcc.git C-SKY: Support --with-float=softfp in configuration. Missed it before, it needs to be used when compiling non-multilib. gcc/ * config.gcc (csky-*-*): Support --with-float=softfp. --- diff --git a/gcc/config.gcc b/gcc/config.gcc index c4633e869ac0..f89a071b4953 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1616,7 +1616,7 @@ csky-*-*) fi if test x${with_float} != x; then case ${with_float} in - soft | hard) ;; + soft | hard | softfp) ;; *) echo "Unknown floating point type used in --with-float=$with_float" exit 1