Don't build SSP tests on MIPS as we dont have stack-protector

supported on this platform.

Discussed with:	brooks
Sponsored by:	DARPA, AFRL
Sponsored by:	HEIF5
This commit is contained in:
Ruslan Bukin 2016-09-26 15:38:02 +00:00
parent 310ab671b8
commit ed8f18ded4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=306347

View File

@ -30,7 +30,8 @@ SUBDIR_DEPEND_tls= tls_dso
TESTS_SUBDIRS+= locale
.endif
.if ${MK_SSP} != "no"
.if ${MK_SSP} != "no" && \
${MACHINE_CPUARCH} != "mips"
TESTS_SUBDIRS+= ssp
.endif