aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ac8c441866b7..92b74bcd3c2a 100644
--- a/Makefile
+++ b/Makefile
@@ -789,6 +789,9 @@ KBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign)
789# disable invalid "can't wrap" optimizations for signed / pointers 789# disable invalid "can't wrap" optimizations for signed / pointers
790KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 790KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow)
791 791
792# Make sure -fstack-check isn't enabled (like gentoo apparently did)
793KBUILD_CFLAGS += $(call cc-option,-fno-stack-check,)
794
792# conserve stack if available 795# conserve stack if available
793KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) 796KBUILD_CFLAGS += $(call cc-option,-fconserve-stack)
794 797