Disable SSP for the kernel on arm as well (see rev 180605).

I overlooked this because a SSP kernel booted for me.

Apologises to:	ticso
This commit is contained in:
Olivier Houchard 2008-07-22 09:38:12 +00:00
parent 3969be11ef
commit 7cff8ceafb

View File

@ -110,6 +110,7 @@ CFLAGS+= -restrict
#
# GCC SSP support.
#
.if ${MK_SSP} != "no" && ${CC} != "icc" && ${MACHINE_ARCH} != "ia64"
.if ${MK_SSP} != "no" && ${CC} != "icc" && ${MACHINE_ARCH} != "ia64" && \
${MACHINE_ARCH} != "arm"
CFLAGS+= -fstack-protector
.endif