gnu: lld: Update to 12.0.1.

* gnu/packages/llvm.scm (lld): Update to 12.0.1.
[native-inputs]: Add LIBUNWIND-HEADERS.
This commit is contained in:
Marius Bakke 2021-09-22 22:24:53 +02:00
parent 33783d9009
commit a7283c1d14
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -949,16 +949,20 @@ (define-public libunwind-headers
(define-public lld
(package
(name "lld")
(version "11.0.0")
(version "12.0.1")
(source (origin
(method url-fetch)
(uri (llvm-uri "lld" version))
(sha256
(base32
"077xyh7sij6mhp4dc4kdcmp9whrpz332fa12rwxnzp3wgd5bxrzg"))))
"0qg3fgc7wj34hdkqn21y03zcmsdd01szhhm1hfki63iifrm3y2v9"))))
(build-system cmake-build-system)
(native-inputs
;; Note: check <https://bugs.llvm.org/show_bug.cgi?id=49228> to see
;; whether this is still necessary.
`(("libunwind-headers" ,libunwind-headers)))
(inputs
`(("llvm" ,llvm-11)))
`(("llvm" ,llvm-12)))
(arguments
`(#:build-type "Release"
;; TODO: Tests require the lit tool, which isn't installed by the LLVM