diff options
author | Marius Bakke <marius@gnu.org> | 2020-12-19 21:51:55 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-12-19 22:27:17 +0100 |
commit | 01f1bca8597bc398b54e74c6e3ea24a8611c93c2 (patch) | |
tree | cc9d9c75f8f43862917250bf7701d1910c27b734 | |
parent | 39299b93457d1e78d8e37598a62790ca864ecbbe (diff) | |
download | guix-01f1bca8597bc398b54e74c6e3ea24a8611c93c2.tar.gz |
gnu: LLVM@10: Re-apply 10.0.1 update.
This is a fixup for the merge in 5e2140511c1ad9ccd731438b74d61b62111da1e6 as well as the previous fixup in e37c575723b38a4e64df798fc8a922e26c849a3f which partially reverted the LLVM@10 update from 66e3812e2fb152f9a98e85f7d74a92753a2873b8. * gnu/packages/llvm.scm (llvm-10): Update to 10.0.1.
-rw-r--r-- | gnu/packages/llvm.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index c199018e5a..0f9b6ffb14 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -562,14 +562,14 @@ of programming tools as well as libraries with equivalent functionality.") (define-public llvm-10 (package (inherit llvm-11) - (version "10.0.0") + (version "10.0.1") (source (origin (method url-fetch) (uri (llvm-uri "llvm" version)) (sha256 (base32 - "1pwgm6cr0xr5a0hrbqs1zvsvvjvy0yq1y47c96804wcs795s90yz")))))) + "1wydhbp9kyjp5y0rc627imxgkgqiv3dfirbqil9dgpnbaw5y7n65")))))) (define-public clang-runtime-10 (clang-runtime-from-llvm |