Remove some disabled warnings from the makefile

This commit is contained in:
Dale Weiler 2012-11-22 20:46:38 +00:00
parent 905ca8819b
commit 59e81eeb7f

View file

@ -6,15 +6,13 @@ CC ?= clang
CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -fno-common CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -fno-common
#turn on tons of warnings if clang is present #turn on tons of warnings if clang is present
ifeq ($(CC), clang) ifeq ($(CC), clang)
CFLAGS += \ CFLAGS += \
-Weverything \ -Weverything \
-Wno-missing-prototypes \ -Wno-missing-prototypes \
-Wno-unused-parameter \
-Wno-sign-conversion \
-Wno-conversion \
-Wno-disabled-macro-expansion \
-Wno-padded \ -Wno-padded \
-Wno-format-nonliteral -Wno-format-nonliteral \
-Wno-disabled-macro-expansion \
-Wno-conversion
endif endif
ifeq ($(track), no) ifeq ($(track), no)