projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5ec998
)
disable stringop truncation warnings for now
author
Stephen Rothwell
<sfr@canb.auug.org.au>
Thu, 30 Aug 2018 21:47:28 +0000
(07:47 +1000)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 8 Dec 2018 12:03:34 +0000
(13:03 +0100)
commit
217c3e0196758662aa0429863b09d1c13da1c5d6
upstream.
They are too noisy
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Makefile
patch
|
blob
|
blame
|
history
diff --git
a/Makefile
b/Makefile
index 572bd98d2344403ae741a22b7ff48056fd723f94..77ffc1dc4e79b403f45a08becc7fb487eb6811f2 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-803,6
+803,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)