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:
br 2016-09-26 15:38:02 +00:00
parent 8a50a32c2f
commit 0a4c111cc4

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