From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A64A3138330 for ; Mon, 26 Sep 2016 10:44:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B55F3E0810; Mon, 26 Sep 2016 10:44:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42C4DE0810 for ; Mon, 26 Sep 2016 10:44:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36868340924 for ; Mon, 26 Sep 2016 10:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4479B248E for ; Mon, 26 Sep 2016 10:44:11 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1474886646.0b1cb1d6aea25cb8801835deaacdbcd7b0de1857.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64-fbsd/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/arch/amd64-fbsd/clang/make.defaults profiles/arch/amd64-fbsd/clang/package.use.force profiles/arch/amd64-fbsd/clang/profile.bashrc X-VCS-Directories: profiles/arch/amd64-fbsd/clang/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 0b1cb1d6aea25cb8801835deaacdbcd7b0de1857 X-VCS-Branch: master Date: Mon, 26 Sep 2016 10:44:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 28cfa882-f734-4383-ba36-be422ecbe585 X-Archives-Hash: 1befb755e5bded4acaee7b379c2ec3aa commit: 0b1cb1d6aea25cb8801835deaacdbcd7b0de1857 Author: Yuta Satoh gmail com> AuthorDate: Sat Sep 24 11:01:59 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Mon Sep 26 10:44:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1cb1d6 profiles/arch/amd64-fbsd/clang: Change to newway to use libc++ by default profiles/arch/amd64-fbsd/clang/make.defaults | 2 +- profiles/arch/amd64-fbsd/clang/package.use.force | 2 +- profiles/arch/amd64-fbsd/clang/profile.bashrc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/arch/amd64-fbsd/clang/make.defaults b/profiles/arch/amd64-fbsd/clang/make.defaults index a1afd07..fa38e0d 100644 --- a/profiles/arch/amd64-fbsd/clang/make.defaults +++ b/profiles/arch/amd64-fbsd/clang/make.defaults @@ -3,6 +3,6 @@ # $Id$ CFLAGS="-O2 -pipe" -CXXFLAGS="-stdlib=libc++ ${CFLAGS}" +CXXFLAGS="${CFLAGS}" FFLAGS="${CFLAGS}" FCFLAGS="${CFLAGS}" diff --git a/profiles/arch/amd64-fbsd/clang/package.use.force b/profiles/arch/amd64-fbsd/clang/package.use.force index affb8d1..9fa095c 100644 --- a/profiles/arch/amd64-fbsd/clang/package.use.force +++ b/profiles/arch/amd64-fbsd/clang/package.use.force @@ -14,4 +14,4 @@ sys-libs/libcxx static-libs abi_x86_32 net-misc/curl ssl curl_ssl_openssl # We obviously need clang -sys-devel/llvm clang static-analyzer +sys-devel/llvm clang static-analyzer default-compiler-rt default-libcxx diff --git a/profiles/arch/amd64-fbsd/clang/profile.bashrc b/profiles/arch/amd64-fbsd/clang/profile.bashrc index 23cc508..a6e226c 100644 --- a/profiles/arch/amd64-fbsd/clang/profile.bashrc +++ b/profiles/arch/amd64-fbsd/clang/profile.bashrc @@ -5,4 +5,4 @@ # Check if clang/clang++ exist before setting them so that we can more easily # switch to this profile and build stages. type -P clang > /dev/null && export CC=clang -type -P clang++ > /dev/null && [ -f /usr/lib/libc++.so ] && export CXX="clang++ -stdlib=libc++" +type -P clang++ > /dev/null && [ -f /usr/lib/libc++.so ] && export CXX=clang++