1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add lld-20.

* gnu/packages/llvm.scm (lld-20): New variable.

Change-Id: I98ac3519f83979b5d31e8d286916f5e43e0d329e
This commit is contained in:
Zheng Junjie
2025-03-11 23:35:30 +08:00
parent ceedd75460
commit 930c48bd2b

View File

@@ -1811,6 +1811,13 @@ components which highly leverage existing libraries in the larger LLVM Project."
(source (llvm-monorepo version))
(inputs (list llvm-19))))
(define-public lld-20
(package
(inherit lld-15)
(version (package-version llvm-20))
(source (llvm-monorepo version))
(inputs (list llvm-20))))
(define-public lld lld-14)
(define* (make-lld-wrapper lld #:key lld-as-ld?)