gnu: lld: Update to 13.0.0.
* gnu/packages/llvm.scm (lld): Update to 13.0.0. [inputs]: Change from LLVM-12 to LLVM-13.master
parent
3191dacc66
commit
a05e573d60
|
@ -1122,20 +1122,20 @@ of programming tools as well as libraries with equivalent functionality.")
|
||||||
(define-public lld
|
(define-public lld
|
||||||
(package
|
(package
|
||||||
(name "lld")
|
(name "lld")
|
||||||
(version "12.0.1")
|
(version "13.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
|
||||||
"0qg3fgc7wj34hdkqn21y03zcmsdd01szhhm1hfki63iifrm3y2v9"))))
|
"11lkwv4jy35z2f3zcpv7hbbk9v9gpavfvxlif8265zv4rl5r1l90"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
;; Note: check <https://bugs.llvm.org/show_bug.cgi?id=49228> to see
|
;; Note: check <https://bugs.llvm.org/show_bug.cgi?id=49228> to see
|
||||||
;; whether this is still necessary.
|
;; whether this is still necessary.
|
||||||
(list libunwind-headers))
|
(list libunwind-headers))
|
||||||
(inputs
|
(inputs
|
||||||
(list llvm-12))
|
(list llvm-13))
|
||||||
(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
|
||||||
|
|
Reference in New Issue