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@gentoo.org>
This commit is contained in:
Sam James
2026-01-02 03:36:22 +00:00
parent d7fe50ea8a
commit 2555cf7852

View File

@@ -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)"