qemu: build without -Werror

While -Werror is nice for developer builds,
it can easily lead to breakage when people
use newer compilers which add new warnings.
This commit is contained in:
Kevin Läufer
2021-08-10 12:28:02 -07:00
parent b7e99dc6c3
commit 17272e3e0b

View File

@@ -176,7 +176,7 @@ if [ -z "$IGNOREQEMU" ] ; then
echo "==> PLEASE REMOVE qemu URL-REWRITING from scripts/build-toolchains.sh. It is no longer needed!" && exit 1
# now actually do the build
SRCDIR="$(pwd)/toolchains" module_build qemu --prefix="${RISCV}" --target-list=riscv${XLEN}-softmmu
SRCDIR="$(pwd)/toolchains" module_build qemu --prefix="${RISCV}" --target-list=riscv${XLEN}-softmmu --disable-werror
fi
# make Dromajo