guix-commits
[Top][All Lists]
Advanced

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

13/45: gnu: Add libomp-10.


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

civodul pushed a commit to branch master
in repository guix.

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

    gnu: Add libomp-10.
    
    * gnu/packages/llvm.scm (libomp-10): 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 f733a767c2..c0c0100f67 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -965,6 +965,22 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                       (base32
                        
"06n1yp638rh24xdxv9v2df0qajxbjz4w59b7dd4ky36drwmpi4yh")))))
 
+(define-public libomp-10
+  (package
+    (inherit libomp-11)
+    (version (package-version llvm-10))
+    (source (origin
+              (method url-fetch)
+              (uri (llvm-uri "openmp" version))
+              (sha256
+               (base32
+                "0i4bn84lkpm5w3qkpvwm5z6jdj8fynp7d3bcasa1xyq4is6757yi"))
+              (file-name (string-append "libomp-" version ".tar.xz"))))
+    (native-inputs
+     (modify-inputs (package-native-inputs libomp-11)
+       (replace "clang" clang-10)
+       (replace "llvm" llvm-10)))))
+
 (define-public clang-toolchain-10
   (make-clang-toolchain clang-10))
 



reply via email to

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