Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 May 2017 16:13:30 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r318654 - head/lib
Message-ID:  <201705221613.v4MGDUlN088310@repo.freebsd.org>

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



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