svn commit: r324825 - head/lib

Dimitry Andric dim at FreeBSD.org
Sat Oct 21 18:21:45 UTC 2017


Author: dim
Date: Sat Oct 21 18:21:44 2017
New Revision: 324825
URL: https://svnweb.freebsd.org/changeset/base/324825

Log:
  After the import of libc++ 5.0.0, there is no need to disable building
  libc++experimental.a on arm (r318654) and mips (r318859) anymore, since
  upstream fixed the static assertions which would occur.
  
  Noticed by:	George Abdelmalik <gabdelmalik at uniridge.com.au>
  PR:		223119
  MFC after:	3 days

Modified:
  head/lib/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Sat Oct 21 17:28:12 2017	(r324824)
+++ head/lib/Makefile	Sat Oct 21 18:21:44 2017	(r324825)
@@ -157,9 +157,7 @@ _libclang_rt=	libclang_rt
 .if ${MK_LIBCPLUSPLUS} != "no"
 _libcxxrt=	libcxxrt
 _libcplusplus=	libc++
-.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
 _libcplusplus+=	libc++experimental
-.endif
 .endif
 
 SUBDIR.${MK_EFI}+=	libefivar


More information about the svn-src-head mailing list