|
|
|
@ -584,6 +584,7 @@ PACKAGE_URL='' |
|
|
|
|
|
|
|
ac_subst_vars='LTLIBOBJS |
|
|
|
LIBOBJS |
|
|
|
gcc_checking |
|
|
|
multilib_flags |
|
|
|
glibc_float_flags |
|
|
|
gcc_float_flags |
|
|
|
@ -656,6 +657,7 @@ enable_atomic |
|
|
|
enable_float |
|
|
|
with_arch |
|
|
|
enable_multilib |
|
|
|
enable_gcc_checking |
|
|
|
' |
|
|
|
ac_precious_vars='build_alias |
|
|
|
host_alias |
|
|
|
@ -1282,6 +1284,9 @@ Optional Features: |
|
|
|
[--enable-float] |
|
|
|
--enable-multilib build both RV32 and RV64 runtime libraries |
|
|
|
[--disable-multilib] |
|
|
|
--enable-gcc-checking Enable gcc internal checking, it will make gcc very |
|
|
|
slow, only enable it when developing gcc |
|
|
|
[--disable-gcc-checking] |
|
|
|
|
|
|
|
Optional Packages: |
|
|
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] |
|
|
|
@ -3303,6 +3308,22 @@ else |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
# Check whether --enable-gcc-checking was given. |
|
|
|
if test "${enable_gcc_checking+set}" = set; then : |
|
|
|
enableval=$enable_gcc_checking; |
|
|
|
else |
|
|
|
enable_gcc_checking=yes |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
if test "x$enable_gcc_checking" != xno; then : |
|
|
|
gcc_checking=--enable-checking=yes |
|
|
|
|
|
|
|
else |
|
|
|
gcc_checking=--enable-checking=release |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
ac_config_files="$ac_config_files Makefile" |
|
|
|
|
|
|
|
ac_config_files="$ac_config_files scripts/wrapper/awk/awk" |
|
|
|
|