From: Stephen Rothwell Date: Thu, 30 Aug 2018 21:47:28 +0000 (+1000) Subject: disable stringop truncation warnings for now X-Git-Tag: v3.18.129~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de050e1a28fec27db66ae082aea8d0fd9823c0f3;p=profile%2Fwearable%2Fplatform%2Fkernel%2Flinux-3.18-exynos7270.git disable stringop truncation warnings for now commit 217c3e0196758662aa0429863b09d1c13da1c5d6 upstream. They are too noisy Signed-off-by: Stephen Rothwell Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/Makefile b/Makefile index 9060189..a3b700a 100644 --- a/Makefile +++ b/Makefile @@ -759,6 +759,9 @@ KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) # disable pointer signed / unsigned warnings in gcc 4.0 KBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign) +# disable stringop warnings in gcc 8+ +KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation) + # disable invalid "can't wrap" optimizations for signed / pointers KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow)