From ed8f18ded41b1856f275d2608a555d66fe63286e Mon Sep 17 00:00:00 2001 From: Ruslan Bukin Date: Mon, 26 Sep 2016 15:38:02 +0000 Subject: [PATCH] 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 --- lib/libc/tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libc/tests/Makefile b/lib/libc/tests/Makefile index 4ead70aceaa..157e411357e 100644 --- a/lib/libc/tests/Makefile +++ b/lib/libc/tests/Makefile @@ -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