[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add lld-11.
From: |
guix-commits |
Subject: |
01/06: gnu: Add lld-11. |
Date: |
Mon, 2 Jan 2023 08:06:16 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit d46d958ae77fef5b76d47f662a1f4dd1a3bd92b3
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jan 2 12:07:04 2023 +0200
gnu: Add lld-11.
* gnu/packages/llvm.scm (lld-11): New variable.
---
gnu/packages/llvm.scm | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 7de7177b77..33e9b5611e 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
;;; Copyright © 2018–2022 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2018, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2018, 2021-2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
@@ -1585,6 +1585,19 @@ components which highly leverage existing libraries in
the larger LLVM Project."
(inputs (modify-inputs (package-inputs lld)
(replace "llvm" llvm-12)))))
+(define-public lld-11
+ (package
+ (inherit lld-12)
+ (version "11.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (llvm-uri "lld" version))
+ (sha256
+ (base32
+ "077xyh7sij6mhp4dc4kdcmp9whrpz332fa12rwxnzp3wgd5bxrzg"))))
+ (inputs (modify-inputs (package-inputs lld)
+ (replace "llvm" llvm-11)))))
+
(define-public lld lld-14)
(define* (make-lld-wrapper lld #:key lld-as-ld?)
- branch master updated (f1d71d31d3 -> 9a19d85f1e), guix-commits, 2023/01/02
- 01/06: gnu: Add lld-11.,
guix-commits <=
- 03/06: gnu: gtkd: Update to 3.10.0., guix-commits, 2023/01/02
- 02/06: gnu: ldc: Update to 1.30.0., guix-commits, 2023/01/02
- 04/06: gnu: gtkd: Remove trailing #t from phases., guix-commits, 2023/01/02
- 05/06: gnu: gtkd: Remove input labels., guix-commits, 2023/01/02
- 06/06: gnu: onedrive: Update to 2.4.22., guix-commits, 2023/01/02