From 88b50bbc526e3d97f95d698350f170e35fa57b90 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 8 Aug 2017 09:46:32 +0100 Subject: [PATCH] make: Remove -Werror Can't fight multiple compiler, versions, and OS and expect everyone to agree while breaking the build for normal people. Signed-off-by: Michel Pollet --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index d1afbe8..be71d45 100644 --- a/Makefile.common +++ b/Makefile.common @@ -39,7 +39,7 @@ SIMAVR := ${shell for p in . .. ../.. ../../..;do test -d $$p/simavr/sim && ech # get the first character of what the compiler says it is, unless it's 'x86_64' doh ARCH := ${shell $(CC) -dumpmachine | sed -e 's/^x/i/' -e 's/\(.\).*/\1/'} -CFLAGS += -O2 -Wall -Wextra -Werror -Wno-unused-parameter \ +CFLAGS += -O2 -Wall -Wextra -Wno-unused-parameter \ -Wno-unused-result -Wno-missing-field-initializers \ -Wno-sign-compare CFLAGS += -g -- 2.39.5