Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Sep 2016 09:44:30 +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: r306364 - in head: lib/libc/tests share/mk
Message-ID:  <201609270944.u8R9iUqi035006@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: br
Date: Tue Sep 27 09:44:30 2016
New Revision: 306364
URL: https://svnweb.freebsd.org/changeset/base/306364

Log:
  Mark SSP broken on MIPS.
  
  Sponsored by:	DARPA, AFRL
  Sponsored by:	HEIF5

Modified:
  head/lib/libc/tests/Makefile
  head/share/mk/src.opts.mk

Modified: head/lib/libc/tests/Makefile
==============================================================================
--- head/lib/libc/tests/Makefile	Tue Sep 27 08:47:02 2016	(r306363)
+++ head/lib/libc/tests/Makefile	Tue Sep 27 09:44:30 2016	(r306364)
@@ -30,8 +30,7 @@ SUBDIR_DEPEND_tls= tls_dso
 TESTS_SUBDIRS+=	locale
 .endif
 
-.if ${MK_SSP} != "no" && \
-    ${MACHINE_CPUARCH} != "mips"
+.if ${MK_SSP} != "no"
 TESTS_SUBDIRS+=	ssp
 .endif
 

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Tue Sep 27 08:47:02 2016	(r306363)
+++ head/share/mk/src.opts.mk	Tue Sep 27 09:44:30 2016	(r306364)
@@ -260,6 +260,9 @@ BROKEN_OPTIONS+=LLDB
 .if ${__T} != "armv6"
 BROKEN_OPTIONS+=LIBSOFT
 .endif
+.if ${__T} == "mips" || ${__T} == "mips64"
+BROKEN_OPTIONS+=SSP
+.endif
 
 .include <bsd.mkopt.mk>
 



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