Makefile.common: disable -Wstrict-overflow.

It didn't turn out that useful and was giving a warning with one of the
preceding changes.

git-svn-id: https://svn.eduke32.com/eduke32@3963 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-07-18 18:08:16 +00:00
parent 2945a966e1
commit 4872adb3c8

View file

@ -205,7 +205,7 @@ ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 4)))
endif
M_TUNE_GENERIC := -mtune=generic
M_STACKREALIGN := -mstackrealign
W_STRICT_OVERFLOW := -Wstrict-overflow=1
W_STRICT_OVERFLOW := -Wno-strict-overflow
endif
ifeq ($(PLATFORM),WINDOWS)