From owner-svn-src-head@freebsd.org Sat Oct 21 18:21:45 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6184E36902; Sat, 21 Oct 2017 18:21:45 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8600865EA9; Sat, 21 Oct 2017 18:21:45 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9LILiIA089663; Sat, 21 Oct 2017 18:21:44 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9LILiJL089662; Sat, 21 Oct 2017 18:21:44 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201710211821.v9LILiJL089662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 21 Oct 2017 18:21:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324825 - head/lib X-SVN-Group: head X-SVN-Commit-Author: dim X-SVN-Commit-Paths: head/lib X-SVN-Commit-Revision: 324825 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Oct 2017 18:21:45 -0000 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 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