Skip to content

Commit

Permalink
dev-libs/libclc: Use llvm.eclass to obtain correct llvm-config path
Browse files Browse the repository at this point in the history
Use the newly-introduced llvm.eclass API to obtain the correct path
for the newest LLVM slot including clang, to fix the issue when
first-level 'clang' on PATH comes from a compiler wrapper such
as ccache.

Bug: https://bugs.gentoo.org/624034
  • Loading branch information
mgorny committed Aug 12, 2017
1 parent 2b3c550 commit 0dba729
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions dev-libs/libclc/libclc-0.2.0_pre20170118.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ else
GIT_ECLASS="vcs-snapshot"
fi

inherit python-any-r1 toolchain-funcs ${GIT_ECLASS}
inherit llvm python-any-r1 toolchain-funcs ${GIT_ECLASS}

DESCRIPTION="OpenCL C library"
HOMEPAGE="http://libclc.llvm.org/"
Expand All @@ -38,14 +38,19 @@ RDEPEND="
DEPEND="${RDEPEND}
${PYTHON_DEPS}"

src_configure() {
# we need to find llvm with matching clang version, so look for
# clang first, and then use llvm-config from the same location
local clang_path=$(type -P clang) || die
llvm_check_deps() {
has_version "sys-devel/clang:${LLVM_SLOT}"
}

pkg_setup() {
# we do not need llvm_pkg_setup
python-any-r1_pkg_setup
}

src_configure() {
./configure.py \
--with-cxx-compiler="$(tc-getCXX)" \
--with-llvm-config="${clang_path%/*}/llvm-config" \
--with-llvm-config="$(get_llvm_prefix)/bin/llvm-config" \
--prefix="${EPREFIX}/usr" || die
}

Expand Down

0 comments on commit 0dba729

Please sign in to comment.