diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-02-24 02:13:56 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-02-24 17:10:23 +0100 |
commit | c9677ce5f7cf50b25d7be3a18ad33ff5160c21db (patch) | |
tree | 91793c1525f02df4b90b4c7d5725733e14f38b74 /gnu | |
parent | 00ede15708867693fe70fa1ff316fef7f31fe275 (diff) | |
download | guix-c9677ce5f7cf50b25d7be3a18ad33ff5160c21db.tar guix-c9677ce5f7cf50b25d7be3a18ad33ff5160c21db.tar.gz |
gnu: mesa-opencl: Build with clang@8.
* gnu/packages/gl.scm (mesa-opencl)[native-inputs]: Change from CLANG to CLANG-8.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gl.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 2a15d36cce..b0e0a43761 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -453,7 +453,7 @@ from software emulation to complete hardware acceleration for modern GPUs.") `(("libclc" ,libclc) ,@(package-inputs mesa))) (native-inputs - `(("clang" ,clang) + `(("clang" ,clang-8) ,@(package-native-inputs mesa))))) (define-public mesa-opencl-icd |