From eea7ddcd0d34702f8f0a33c1933718706c6318c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Tue, 24 Jul 2012 19:16:20 +0100 Subject: [PATCH] Remove -Werror option. Although it makes impossible to ignore errors, it also makes impossible to use older code with newer compiler versions, which tend to rant more with age. Reviewed-by: Kurt Daverman --- lib/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile.rules b/lib/Makefile.rules index 99c26a6..5e4b997 100644 --- a/lib/Makefile.rules +++ b/lib/Makefile.rules @@ -21,7 +21,7 @@ CFLAGS := -m32 -ffreestanding -nostdinc -fno-stack-protector LDFLAGS := -nostdlib -Wl,-T,$(LIB_DIR)/metalkit/image.ld # Extra warnings -CFLAGS += -Wall -Werror +CFLAGS += -Wall # Size Optimizations. CFLAGS += -Os -fweb