david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[build] Allow NO_WERROR=1 to inhibit --fatal-warnings as well as -Werror

This commit is contained in:
Michael Brown 2009-02-16 01:06:40 +00:00
parent 24e948f030
commit 78a57a6f76
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,6 @@ CFLAGS += -Os -ffreestanding
CFLAGS += -Wall -W -Wformat-nonliteral
CFLAGS += -g
CFLAGS += $(EXTRA_CFLAGS)
ASFLAGS += --fatal-warnings
ASFLAGS += $(EXTRA_ASFLAGS)
LDFLAGS += $(EXTRA_LDFLAGS)
@ -295,6 +294,7 @@ EMBEDDED_IMAGE = image/default.gpxe
#
ifneq ($(NO_WERROR),1)
CFLAGS += -Werror
ASFLAGS += --fatal-warnings
endif
# compiler.h is needed for our linking and debugging system