diff options
author | Marius Bakke <marius@gnu.org> | 2022-07-22 14:46:52 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-23 19:43:11 +0200 |
commit | c16a6a9ea22742ba4ecdc15dfae874bbe50f710c (patch) | |
tree | c425fe745b176eaecb27b40bd42bd3326907b79f /gnu/packages/gl.scm | |
parent | 8b0565c07740167982e9cef3fc37359b25340d1b (diff) | |
download | guix-c16a6a9ea22742ba4ecdc15dfae874bbe50f710c.tar.gz |
gnu: mesa: Build with the default LLVM.
* gnu/packages/gl.scm (mesa)[inputs]: Change from LLVM-11 to LLVM. (mesa-opencl)[native-inputs]: Change from CLANG-11 to CLANG.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index df69a8c541..d6d127d765 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -305,7 +305,7 @@ also known as DXTn or DXTC) for Mesa.") wayland-protocols) ;; TODO: Resort alphabetically. ;; Note: update the 'clang' input of mesa-opencl when bumping this. - (list llvm-11))) + (list llvm))) (native-inputs (append (list bison flex @@ -507,7 +507,7 @@ from software emulation to complete hardware acceleration for modern GPUs.") (prepend libclc))) (native-inputs (modify-inputs (package-native-inputs mesa) - (prepend clang-11))))) + (prepend clang))))) (define-public mesa-opencl-icd (package/inherit mesa-opencl |