guix-commits
[Top][All Lists]
Advanced

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

02/19: gnu: llvm@3: Do not inherit 'install-opt-viewer' phase.


From: guix-commits
Subject: 02/19: gnu: llvm@3: Do not inherit 'install-opt-viewer' phase.
Date: Mon, 3 Feb 2020 09:30:23 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit a6046f24ddd34b44418a2d1b02a84ddcc61b47aa
Author: Marius Bakke <address@hidden>
AuthorDate: Mon Feb 3 09:44:14 2020 +0100

    gnu: llvm@3: Do not inherit 'install-opt-viewer' phase.
    
    This is a follow-up to commit 50b61ec22306181c419a3bd4c35b3c001c604994.
    
    * gnu/packages/llvm.scm (llvm-3.9.1)[outputs, arguments]: New fields.
    (llvm-3.8, llvm-3.7, llvm-3.6, llvm-3.5): Inherit from LLVM-3.9.1.
---
 gnu/packages/llvm.scm | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index ae5fe72..e333ab7 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2016 Dennis Mungai <address@hidden>
 ;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2017 Roel Janssen <address@hidden>
-;;; Copyright © 2018, 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2018, 2019, 2020 Marius Bakke <address@hidden>
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Efraim Flashner <address@hidden>
 ;;; Copyright © 2018 Tim Gesthuizen <address@hidden>
@@ -574,7 +574,13 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                           version "/llvm-" version ".src.tar.xz"))
       (sha256
        (base32
-        "1vi9sf7rx1q04wj479rsvxayb6z740iaz3qniwp266fgp5a07n8z"))))))
+        "1vi9sf7rx1q04wj479rsvxayb6z740iaz3qniwp266fgp5a07n8z"))))
+    (outputs '("out"))
+    (arguments
+     (substitute-keyword-arguments (package-arguments llvm)
+       ((#:phases phases)
+        `(modify-phases ,phases
+           (delete 'install-opt-viewer)))))))
 
 (define-public clang-runtime-3.9.1
   (clang-runtime-from-llvm
@@ -590,7 +596,7 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    #:patches '("clang-3.8-libc-search-path.patch")))
 
 (define-public llvm-3.8
-  (package (inherit llvm)
+  (package (inherit llvm-3.9.1)
     (name "llvm")
     (version "3.8.1")
     (source
@@ -615,7 +621,7 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    #:patches '("clang-3.8-libc-search-path.patch")))
 
 (define-public llvm-3.7
-  (package (inherit llvm)
+  (package (inherit llvm-3.9.1)
     (version "3.7.1")
     (source
      (origin
@@ -639,7 +645,7 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    #:patches '("clang-3.5-libc-search-path.patch")))
 
 (define-public llvm-3.6
-  (package (inherit llvm)
+  (package (inherit llvm-3.9.1)
     (version "3.6.2")
     (source
      (origin
@@ -662,7 +668,7 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    #:patches '("clang-3.5-libc-search-path.patch")))
 
 (define-public llvm-3.5
-  (package (inherit llvm)
+  (package (inherit llvm-3.9.1)
     (version "3.5.2")
     (source
      (origin



reply via email to

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