Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Sep 2016 15:38:02 +0000 (UTC)
From:      Ruslan Bukin <br@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r306347 - head/lib/libc/tests
Message-ID:  <201609261538.u8QFc2Av023865@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609261538.u8QFc2Av023865>