gnu: lld: Update to 11.0.0.

* gnu/packages/llvm.scm (lld): Update to 11.0.0.
[inputs]: Change from LLVM-10 to LLVM-11.
This commit is contained in:
Marius Bakke 2020-10-18 17:36:25 +02:00
parent 7f79358def
commit 8937cd05d3
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -833,16 +833,16 @@ (define-public clang-toolchain clang-toolchain-9)
(define-public lld (define-public lld
(package (package
(name "lld") (name "lld")
(version (package-version llvm-10)) (version "11.0.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (llvm-uri "lld" version)) (uri (llvm-uri "lld" version))
(sha256 (sha256
(base32 (base32
"026pwcbczcg0j5c9h7hxxrn3ki81ia9m9sfn0sy0bvzffv2xg85r")))) "077xyh7sij6mhp4dc4kdcmp9whrpz332fa12rwxnzp3wgd5bxrzg"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(inputs (inputs
`(("llvm" ,llvm-10))) `(("llvm" ,llvm-11)))
(arguments (arguments
`(#:build-type "Release" `(#:build-type "Release"
;; TODO: Tests require the lit tool, which isn't installed by the LLVM ;; TODO: Tests require the lit tool, which isn't installed by the LLVM