diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-02-15 11:28:14 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-02-15 12:12:09 +0100 |
commit | d199a4c7b4c4d3320ed59e96a382f4c577630360 (patch) | |
tree | f959b0cedc6d854dc0a12935a873ae5172706e1f /gnu/packages/gl.scm | |
parent | 3bdcc668ee94264798de0e8a8633335528e80e19 (diff) | |
download | guix-d199a4c7b4c4d3320ed59e96a382f4c577630360.tar guix-d199a4c7b4c4d3320ed59e96a382f4c577630360.tar.gz |
gnu: LLVM, Clang: Update to 7.0.1.
* gnu/packages/patches/clang-7.0-libc-search-path.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/llvm.scm (llvm, clang-runtime, clang): Update to 7.0.1.
(llvm-7.0.1): Remove variable.
(clang-from-llvm)[arguments]: Adjust phase to match Clang 7.
(llvm-6, clang-runtime-6, clang-6): New public variables.
* gnu/packages/dlang.scm (ldc)[native-inputs]: Change LLVM and CLANG to
LLVM-6.0 and CLANG-6.0.
* gnu/packages/gl.scm (mesa)[inputs]: Change from LLVM to LLVM-6.
Diffstat (limited to 'gnu/packages/gl.scm')
-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 b673cbffe6..37b8fce7cb 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -257,7 +257,7 @@ also known as DXTn or DXTC) for Mesa.") ("libxvmc" ,libxvmc) ,@(match (%current-system) ((or "x86_64-linux" "i686-linux") - `(("llvm" ,llvm))) + `(("llvm" ,llvm-6))) ;TODO: Change to LLVM in the next rebuild cycle. (_ `())) ("makedepend" ,makedepend) |