From 32eafe028f4d665efca2ef3b8405a9ff2aad1a9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 14 Mar 2017 18:31:50 +0100 Subject: [PATCH] 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. --- dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 } -- 2.26.2