svn commit: r306364 - in head: lib/libc/tests share/mk
Ruslan Bukin
br at FreeBSD.org
Tue Sep 27 09:44:31 UTC 2016
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>
More information about the svn-src-all
mailing list