VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Masahiro Yamada <masahiroy@kernel.org> 2020-09-10 22:51:19 +0900 committer: Masahiro Yamada <masahiroy@kernel.org> 2020-09-25 00:36:50 +0900 commit: 7d4eb0d8e229fa51e14f0f85de03c02880e7d742 parent: 8b42cf2fde0ee8b63d71d4bc442a03b6ea55b00b
Commit Summary:
kbuild: remove cc-option test of -fno-stack-check
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/Makefile b/Makefile
index 7036dcb99cdf..3722b42fd01e 100644
--- a/Makefile
+++ b/Makefile
@@ -940,7 +940,7 @@ KBUILD_CFLAGS	+= $(call cc-option,-fno-merge-all-constants)
 KBUILD_CFLAGS	+= $(call cc-option,-fmerge-constants)
 
 # Make sure -fstack-check isn't enabled (like gentoo apparently did)
-KBUILD_CFLAGS  += $(call cc-option,-fno-stack-check,)
+KBUILD_CFLAGS  += -fno-stack-check
 
 # conserve stack if available
 KBUILD_CFLAGS   += $(call cc-option,-fconserve-stack)