mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
fixed clang 3.4 compilation (nw)
This commit is contained in:
parent
828c40a187
commit
413b612c11
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user