guix-commits
[Top][All Lists]
Advanced

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

15/45: gnu: Add libomp-9.


From: guix-commits
Subject: 15/45: gnu: Add libomp-9.
Date: Thu, 4 Aug 2022 06:07:08 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 16d6a618fa69a1c4c2bb958727eff5598327de47
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Wed Jul 20 15:09:03 2022 +0000

    gnu: Add libomp-9.
    
    * gnu/packages/llvm.scm (libomp-9): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/llvm.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index caa3e5e087..4232e88d4f 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1026,6 +1026,22 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    "0ls2h3iv4finqyflyhry21qhc9cm9ga7g1zq21020p065qmm2y2p"
                    #:patches '("clang-9.0-libc-search-path.patch")))
 
+(define-public libomp-9
+  (package
+    (inherit libomp-10)
+    (version (package-version llvm-9))
+    (source (origin
+              (method url-fetch)
+              (uri (llvm-uri "openmp" version))
+              (sha256
+               (base32
+                "1knafnpp0f7hylx8q20lkd6g1sf0flly572dayc5d5kghh7hd52w"))
+              (file-name (string-append "libomp-" version ".tar.xz"))))
+    (native-inputs
+     (modify-inputs (package-native-inputs libomp-10)
+       (replace "clang" clang-9)
+       (replace "llvm" llvm-9)))))
+
 (define-public clang-toolchain-9
   (make-clang-toolchain clang-9))
 



reply via email to

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