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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to