dev-util/intel-graphics-compiler-1.0.4111: only block llvm-10 in TC

Turns out this version is not going anywhere any time soon, in fact
there is a stablereq for it now - so let's handle this properly.
Specifically, pkg_pretend() now dies if the current compiler is
clang-10+ (I think it is safe to assume that if 10 does not work nor
will the newer versions).

Bug: https://bugs.gentoo.org/738934
Signed-off-by: Marek Szuba <marecki@gentoo.org>
This commit is contained in:
Marek Szuba
2020-09-20 16:25:32 +02:00
parent 89f2675c4f
commit 6cbc8a7b3d

View File

@@ -18,9 +18,7 @@ IUSE="debug"
LLVM_MAX_SLOT=10
# Bug #738934
#COMMON="<=sys-devel/llvm-${LLVM_MAX_SLOT}.9999:=[${MULTILIB_USEDEP}]
COMMON="<sys-devel/llvm-10.0.1:=[${MULTILIB_USEDEP}]
COMMON="<=sys-devel/llvm-${LLVM_MAX_SLOT}.9999:=[${MULTILIB_USEDEP}]
<=dev-libs/opencl-clang-${LLVM_MAX_SLOT}.9999:=[${MULTILIB_USEDEP}]"
DEPEND="${COMMON}"
RDEPEND="${COMMON}"
@@ -32,6 +30,14 @@ PATCHES=(
S="${WORKDIR}"/${PN}-igc-${PV}
pkg_pretend() {
if [[ ${MERGE_TYPE} != binary ]]; then
if tc-is-clang && [[ $(clang-major-version) -ge 10 ]] ; then
die "Building IGC with clang-10 and newer is presently not supported (see Bug #738934). Please use clang-9 or gcc instead."
fi
fi
}
multilib_src_configure() {
# Select the same slot as the best opencl-clang
local ocl_clang_ver="$(best_version -d dev-libs/opencl-clang:=)"