removed -Wno-strict-overflow for GCC 4.8 as well (nw)

This commit is contained in:
Oliver Stöneberg 2014-09-09 19:10:56 +00:00
parent 30bb95b31d
commit 318d01b5ae

View File

@ -8,7 +8,7 @@ endif
ifeq ($(findstring 4.8.,$(TEST_GCC)),4.8.)
CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs
# array bounds checking seems to be buggy in 4.8.1 (try it on video/stvvdp1.c and video/model1.c without -Wno-array-bounds)
CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow
CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds
endif
ifeq ($(findstring 4.9.,$(TEST_GCC)),4.9.)