This is an automated email from the git hooks/post-receive script.
nckx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 225c5ea Revert "gnu: llvm: Update to 11.0.1."
225c5ea is described below
commit 225c5ea014728b03cc521481af7af284746cd464
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sat Jan 16 21:22:28 2021 +0100
Revert "gnu: llvm: Update to 11.0.1."
This reverts commit 9b415c0b36c885e7899c45617a8c4e64118a6379, which
reportedly breaks[0] [email protected], rust-1.48.0 and rust-1.49.0.
[0]: http://issues.guix.gnu.org/45909
---
gnu/packages/llvm.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index a926585..114654c 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2016, 2018, 2019, 2020 Ricardo Wurmus <[email protected]>
;;; Copyright © 2017 Roel Janssen <[email protected]>
;;; Copyright © 2018, 2019, 2020 Marius Bakke <[email protected]>
-;;; Copyright © 2018, 2019, 2021 Tobias Geerinckx-Rice <[email protected]>
+;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2018 Tim Gesthuizen <[email protected]>
;;; Copyright © 2018 Pierre Neidhardt <[email protected]>
@@ -476,13 +476,14 @@ output), and Binutils.")
(define-public llvm-11
(package
(name "llvm")
- (version "11.0.1")
+ (version "11.0.0")
(source
(origin
(method url-fetch)
(uri (llvm-uri "llvm" version))
(sha256
- (base32 "0a5mb65xa5bal8q6cb37xgkqis2bip87fsafgq3wbsva9cjprn6c"))))
+ (base32
+ "0s94lwil98w7zb7cjrbnxli0z7gklb312pkw74xs1d6zk346hgwi"))))
(build-system cmake-build-system)
(outputs '("out" "opt-viewer"))
(native-inputs
@@ -537,11 +538,11 @@ of programming tools as well as libraries with equivalent
functionality.")
(define-public clang-runtime-11
(clang-runtime-from-llvm
llvm-11
- "1z470r8c5aahdwkmflglx998n0i77j8b1c69d7cir1kf27qy6yq8"))
+ "0d5j5l8phwqjjscmk8rmqn0i2i0abl537gdbkagl8fjpzy1gyjip"))
(define-public clang-11
(clang-from-llvm llvm-11 clang-runtime-11
- "0kab4zmkxffg98a3rx95756jlwhxflalin5w05g1anpwxv175xbk"
+ "02ajkij85966vd150iy246mv16dsaph1kfi0y8wnncp8w6nar5hg"
#:patches '("clang-11.0-libc-search-path.patch")
#:tools-extra
(origin
@@ -550,7 +551,7 @@ of programming tools as well as libraries with equivalent
functionality.")
(package-version llvm-11)))
(sha256
(base32
-
"1j8n6n4l54k2lrdxh266y1fl4z8vy5dc76wsf0csk5n3ikfi38ic")))))
+
"02bcwwn54661madhq4nxc069s7p7pj5gpqi8ww50w3anbpviilzy")))))
(define-public clang-toolchain-11
(make-clang-toolchain clang-11))