mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
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:
parent
7f79358def
commit
8937cd05d3
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue