From ef6b5608ee06f29f63d751e83c5b24db7078df83 Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Mon, 9 Jul 2018 07:15:20 +0200 Subject: [PATCH] Disable new gcc8 warnings in Makefile As I can't fix broken generated swig code. Signed-off-by: Ondrej Jirman --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54da5cd51ce..f76d9981bd5 100644 --- a/Makefile +++ b/Makefile @@ -255,7 +255,7 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ HOSTCC = cc HOSTCXX = c++ HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \ - $(if $(CONFIG_TOOLS_DEBUG),-g) + $(if $(CONFIG_TOOLS_DEBUG),-g) -Wno-stringop-truncation HOSTCXXFLAGS = -O2 # With the move to GCC 6, we have implicitly upgraded our language