From: Michał Górny Date: Tue, 14 Mar 2017 17:31:50 +0000 (+0100) Subject: dev-libs/libclc: Respect CXX to fix C++ stdlib incompat, #612582 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=32eafe028f4d665efca2ef3b8405a9ff2aad1a9f;p=gentoo.git dev-libs/libclc: Respect CXX to fix C++ stdlib incompat, #612582 Force using the correct C++ compiler via passing --with-cxx-compiler= to the configure script. Otherwise, libclc defaults to using clang++ which can cause compatibility issues when clang++ defaults to libc++ and LLVM was built using gcc. This does not affect the compiler used to build the runtime. --- diff --git a/dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild b/dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild index 016da1ccc2b4..a3f5bf3c2c7c 100644 --- a/dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild +++ b/dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild @@ -15,7 +15,7 @@ else GIT_ECLASS="vcs-snapshot" fi -inherit python-any-r1 ${GIT_ECLASS} +inherit python-any-r1 toolchain-funcs ${GIT_ECLASS} DESCRIPTION="OpenCL C library" HOMEPAGE="http://libclc.llvm.org/" @@ -40,6 +40,7 @@ DEPEND="${RDEPEND} src_configure() { ./configure.py \ + --with-cxx-compiler="$(tc-getCXX)" \ --with-llvm-config="$(type -P llvm-config)" \ --prefix="${EPREFIX}/usr" || die }