1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00

Disable SSP for mips until support is added to the base architecture.

This commit is contained in:
Warner Losh 2008-07-23 06:16:34 +00:00
parent a678ba4ec8
commit a30c29f9f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=180732

View File

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