From 4872adb3c868770c95397b254cf1b18a4f199a67 Mon Sep 17 00:00:00 2001 From: helixhorned <helixhorned@1a8010ca-5511-0410-912e-c29ae57300e0> Date: Thu, 18 Jul 2013 18:08:16 +0000 Subject: [PATCH] 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 --- polymer/eduke32/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 16c9e2aaa..b60b6e460 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -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)