svn commit: r318859 - head/lib

Adrian Chadd adrian at FreeBSD.org
Thu May 25 05:02:44 UTC 2017


Author: adrian
Date: Thu May 25 05:02:43 2017
New Revision: 318859
URL: https://svnweb.freebsd.org/changeset/base/318859

Log:
  [lib] disable libc++experimental on mips platforms for now.
  
  This breaks at least mips32 platform builds.
  
  Reviewed by:	dim

Modified:
  head/lib/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Thu May 25 05:01:44 2017	(r318858)
+++ head/lib/Makefile	Thu May 25 05:02:43 2017	(r318859)
@@ -157,7 +157,7 @@ _libclang_rt=	libclang_rt
 .if ${MK_LIBCPLUSPLUS} != "no"
 _libcxxrt=	libcxxrt
 _libcplusplus=	libc++
-.if ${MACHINE_CPUARCH} != "arm"
+.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
 _libcplusplus+=	libc++experimental
 .endif
 .endif


More information about the svn-src-head mailing list