|
|
|
@ -595,6 +595,8 @@ enable_gdb |
|
|
|
with_guile |
|
|
|
with_system_zlib |
|
|
|
configure_host |
|
|
|
target_cxxflags |
|
|
|
target_cflags |
|
|
|
cmodel |
|
|
|
gcc_checking |
|
|
|
newlib_multilib_names |
|
|
|
@ -670,6 +672,8 @@ with_tune |
|
|
|
enable_multilib |
|
|
|
enable_gcc_checking |
|
|
|
with_cmodel |
|
|
|
with_target_cflags |
|
|
|
with_target_cxxflags |
|
|
|
with_host |
|
|
|
with_system_zlib |
|
|
|
with_guile |
|
|
|
@ -1327,6 +1331,8 @@ Optional Packages: |
|
|
|
--with-tune=rocket Set the base RISC-V CPU, defaults to rocket |
|
|
|
--with-cmodel Select the code model to use when building libc and |
|
|
|
libgcc [--with-cmodel=medlow] |
|
|
|
--with-target-cflags Add extra target flags for C for library code |
|
|
|
--with-target-cxxflags Add extra target flags for C++ for library code |
|
|
|
--with-host=x86_64-w64-mingw32 |
|
|
|
Sets the host for the tools, you probably want |
|
|
|
nothing |
|
|
|
@ -3381,6 +3387,23 @@ else |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# Check whether --with-target_cflags was given. |
|
|
|
if test "${with_target_cflags+set}" = set; then : |
|
|
|
withval=$with_target_cflags; |
|
|
|
fi |
|
|
|
|
|
|
|
target_cflags=$with_target_cflags |
|
|
|
|
|
|
|
|
|
|
|
# Check whether --with-target_cxxflags was given. |
|
|
|
if test "${with_target_cxxflags+set}" = set; then : |
|
|
|
withval=$with_target_cxxflags; |
|
|
|
fi |
|
|
|
|
|
|
|
target_cxxflags=$with_target_cxxflags |
|
|
|
|
|
|
|
|
|
|
|
ac_config_files="$ac_config_files Makefile" |
|
|
|
|
|
|
|
ac_config_files="$ac_config_files scripts/wrapper/awk/awk" |
|
|
|
|