fixed clang 3.4 compilation (nw)

This commit is contained in:
Oliver Stöneberg 2015-02-05 21:43:50 +01:00
parent 828c40a187
commit 413b612c11

View File

@ -5,9 +5,6 @@ CCOMFLAGS += \
# caused by obj/sdl64d/emu/cpu/tms57002/tms57002.inc
CCOMFLAGS += -Wno-self-assign-field
# caused by src/mame/video/jagblit.inc on older clang versions
#CCOMFLAGS += -Wno-constant-logical-operand
# caused by popmessage(NULL) on older clang versions
#CCOMFLAGS += -Wno-format-security
@ -32,6 +29,9 @@ TEST_CLANG := $(shell clang --version)
ifeq ($(findstring 3.4,$(TEST_CLANG)),3.4)
CCOMFLAGS += -Wno-inline-new-delete
# caused by src/mame/video/jagblit.inc
CCOMFLAGS += -Wno-constant-logical-operand
endif
ifeq ($(findstring 3.5,$(TEST_CLANG)),3.5)