From: Felix Fietkau Date: Sun, 2 Aug 2015 07:40:12 +0000 (+0000) Subject: build: disable kernel stack protector support for i386/x86_64 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fyousong.git;a=commitdiff_plain;h=bf82deff7069599c9f130f5bb0222acd171fd19d build: disable kernel stack protector support for i386/x86_64 When stack protector support is disabled in libc (always the case for !musl), gcc assumes that it needs to use __stack_chk_guard for the stack canary. This causes kernel build errors, because the kernel is only set up to handle TLS stack canaries. Signed-off-by: Felix Fietkau SVN-Revision: 46543 --- diff --git a/config/Config-build.in b/config/Config-build.in index 4e2b0f583d..f2d292e453 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -239,6 +239,7 @@ menu "Global build settings" choice prompt "Kernel space Stack-Smashing Protection" default KERNEL_CC_STACKPROTECTOR_REGULAR + depends on USE_MUSL || !(x86_64 || i386) help Enable GCC Stack-Smashing Protection (SSP) for the kernel config KERNEL_CC_STACKPROTECTOR_NONE