From 9217cecc8bee7b2a6759f38eafb823703c9d0617 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Mon, 16 May 2022 18:32:51 +0200 Subject: fix(configure): disable -Werror by default Because the build system does not have direct control over the compiler, it cannot ensure that no warnings are issued in downstream compilations. Such warnings can occur due to newer compiler versions with more sophisticated diagnostics, older compiler versions with diagnostics bugs, or simply different, untested compilers. With -Werror enabled by default, these harmless warnings result in complete compilation failures. The option remains enabled in CI to ensure upstream code quality. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 49edf2f7d..715027445 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ backtrace_lib= llvm_be=llvm6 build= build_mode= -enable_werror=true +enable_werror=false enable_checks=true enable_gplcompat=unknown enable_libghdl=true -- cgit v1.2.3