mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: Add lld-15.
* gnu/packages/llvm.scm (lld-15): New variable. (lld-14): Inherit from lld-15.
This commit is contained in:
parent
283d7318c5
commit
08b6a17de9
1 changed files with 11 additions and 3 deletions
|
@ -1519,14 +1519,14 @@ (define-public libunwind-headers
|
|||
(properties `((release-monitoring-url . ,%llvm-release-monitoring-url)))
|
||||
(license license:asl2.0))) ;with LLVM exceptions
|
||||
|
||||
(define-public lld-14
|
||||
(define-public lld-15
|
||||
(package
|
||||
(name "lld")
|
||||
(version "14.0.6")
|
||||
(version "15.0.4")
|
||||
(source (llvm-monorepo version))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
(list llvm-14))
|
||||
(list llvm-15))
|
||||
(arguments
|
||||
'(#:build-type "Release"
|
||||
;; TODO: Tests require the lit tool, which isn't installed by the LLVM
|
||||
|
@ -1542,6 +1542,14 @@ (define-public lld-14
|
|||
components which highly leverage existing libraries in the larger LLVM Project.")
|
||||
(license license:asl2.0))) ; With LLVM exception
|
||||
|
||||
(define-public lld-14
|
||||
(package
|
||||
(inherit lld-15)
|
||||
(version "14.0.6")
|
||||
(source (llvm-monorepo version))
|
||||
(inputs
|
||||
(list llvm-14))))
|
||||
|
||||
(define-public lld-13
|
||||
(package
|
||||
(inherit lld-14)
|
||||
|
|
Loading…
Reference in a new issue