diff options
author | Xianmiao Qu <cooper.qu@linux.alibaba.com> | 2023-01-15 10:04:35 +0800 |
---|---|---|
committer | Xianmiao Qu <cooper.qu@linux.alibaba.com> | 2023-01-15 10:04:35 +0800 |
commit | e658e8157db372555a853c02824f5fc78709a5b1 (patch) | |
tree | 20d65d86d1d24b64ff5d7f35754f129db643dc92 /gcc | |
parent | 5013c3bb3ead9c27adb90152115ca1d606cbf2dc (diff) | |
download | gcc-e658e8157db372555a853c02824f5fc78709a5b1.zip gcc-e658e8157db372555a853c02824f5fc78709a5b1.tar.gz gcc-e658e8157db372555a853c02824f5fc78709a5b1.tar.bz2 |
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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index c4633e8..f89a071 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 |