Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 May 2017 05:02:43 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r318859 - head/lib
Message-ID:  <201705250502.v4P52hxs024455@repo.freebsd.org>

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



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