commit: 2555cf78521ee2d92984c09361f2c68d50cd7ae1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Jan 2 03:36:22 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Jan 2 03:36:22 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2555cf78
dev-libs/pocl: disable LLVM 21 It's broken for nvptx. ``` -- Found CUDAToolkit: /opt/cuda/targets/x86_64-linux/include (found version "12.9.86") CMake Error at CMakeLists.txt:2202 (message): CUDA driver does not work with LLVM/Clang 21 -- Configuring incomplete, errors occurred! * ERROR: dev-libs/pocl-7.1::gentoo failed (configure phase): * cmake failed ``` Bug: https://github.com/llvm/llvm-project/issues/154772 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/pocl/pocl-7.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/pocl/pocl-7.1.ebuild b/dev-libs/pocl/pocl-7.1.ebuild index 9d39fedc838b..945ccb216e98 100644 --- a/dev-libs/pocl/pocl-7.1.ebuild +++ b/dev-libs/pocl/pocl-7.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -LLVM_COMPAT=( {18..21} ) +LLVM_COMPAT=( {18..20} ) inherit cmake cuda llvm-r1 DESCRIPTION="Portable Computing Language (an implementation of OpenCL)"
