svn commit: r306347 - head/lib/libc/tests

Ruslan Bukin br at FreeBSD.org
Mon Sep 26 15:38:03 UTC 2016


Author: br
Date: Mon Sep 26 15:38:02 2016
New Revision: 306347
URL: https://svnweb.freebsd.org/changeset/base/306347

Log:
  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

Modified:
  head/lib/libc/tests/Makefile

Modified: head/lib/libc/tests/Makefile
==============================================================================
--- head/lib/libc/tests/Makefile	Mon Sep 26 15:30:30 2016	(r306346)
+++ head/lib/libc/tests/Makefile	Mon Sep 26 15:38:02 2016	(r306347)
@@ -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
 


More information about the svn-src-all mailing list