From 73a22c51adc191878f843268240b74726fdc57b9 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Fri, 20 Sep 2013 13:01:19 -0500 Subject: [PATCH] Build with -Werror to catch future prototype mismatches. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4bdd603..89912de 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ EFI_CRT_OBJS = $(EFI_PATH)/crt0-efi-$(ARCH).o EFI_LDS = elf_$(ARCH)_efi.lds CFLAGS = -ggdb -O0 -fno-stack-protector -fno-strict-aliasing -fpic \ - -fshort-wchar -Wall -mno-red-zone -maccumulate-outgoing-args \ + -fshort-wchar -Wall -Werror -mno-red-zone -maccumulate-outgoing-args \ -mno-mmx -mno-sse \ $(EFI_INCLUDES) ifeq ($(ARCH),x86_64)