svn commit: r318654 - head/lib
Dimitry Andric
dim at FreeBSD.org
Mon May 22 16:13:31 UTC 2017
Author: dim
Date: Mon May 22 16:13:30 2017
New Revision: 318654
URL: https://svnweb.freebsd.org/changeset/base/318654
Log:
For now, disable building libc++experimental for arm, since there are a
number of static assertion failures in the time_t related parts.
Reported by: mmel, kib
Modified:
head/lib/Makefile
Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile Mon May 22 16:11:46 2017 (r318653)
+++ head/lib/Makefile Mon May 22 16:13:30 2017 (r318654)
@@ -156,7 +156,10 @@ _libclang_rt= libclang_rt
.if ${MK_LIBCPLUSPLUS} != "no"
_libcxxrt= libcxxrt
-_libcplusplus= libc++ libc++experimental
+_libcplusplus= libc++
+.if ${MACHINE_CPUARCH} != "arm"
+_libcplusplus+= libc++experimental
+.endif
.endif
SUBDIR.${MK_EFI}+= libefivar
More information about the svn-src-head
mailing list