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 <krd@vmware.com>
master
José Fonseca 2012-07-24 19:16:20 +01:00
parent 9cb814fd3a
commit eea7ddcd0d
1 changed files with 1 additions and 1 deletions

View File

@ -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