Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable stringop truncation warnings for now

They are too noisy

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Stephen Rothwell and committed by
Linus Torvalds
217c3e01 b6935d2a

+3
+3
Makefile
··· 807 807 # disable pointer signed / unsigned warnings in gcc 4.0 808 808 KBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign) 809 809 810 + # disable stringop warnings in gcc 8+ 811 + KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation) 812 + 810 813 # disable invalid "can't wrap" optimizations for signed / pointers 811 814 KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 812 815