diff options
author | Yuta Satoh <nigoro.dev@gmail.com> | 2016-09-24 20:01:59 +0900 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-09-26 12:44:06 +0200 |
commit | 0b1cb1d6aea25cb8801835deaacdbcd7b0de1857 (patch) | |
tree | 729b9aa07a759100ee8392cc3bf9a57ad529cbb5 /profiles | |
parent | games-strategy/warzone2100: Fixed trailing whitespace QA warning. (diff) | |
download | gentoo-0b1cb1d6aea25cb8801835deaacdbcd7b0de1857.tar.gz gentoo-0b1cb1d6aea25cb8801835deaacdbcd7b0de1857.tar.bz2 gentoo-0b1cb1d6aea25cb8801835deaacdbcd7b0de1857.zip |
profiles/arch/amd64-fbsd/clang: Change to newway to use libc++ by default
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/arch/amd64-fbsd/clang/make.defaults | 2 | ||||
-rw-r--r-- | profiles/arch/amd64-fbsd/clang/package.use.force | 2 | ||||
-rw-r--r-- | 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 a1afd0751b62..fa38e0d7a286 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 affb8d1f9428..9fa095c89ab7 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 23cc5088393a..a6e226c03e6a 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++ |