guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add lld-15.


From: guix-commits
Subject: 01/05: gnu: Add lld-15.
Date: Thu, 17 Nov 2022 06:07:34 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 08b6a17de95ba6d26a39218bebd16cc61873505a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Nov 17 10:46:31 2022 +0200

    gnu: Add lld-15.
    
    * gnu/packages/llvm.scm (lld-15): New variable.
    (lld-14): Inherit from lld-15.
---
 gnu/packages/llvm.scm | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index d315149c42..de19b40343 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1519,14 +1519,14 @@ Library.")
     (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 @@ Library.")
 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]