guix-commits
[Top][All Lists]
Advanced

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

17/45: gnu: Add libomp-8.


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

civodul pushed a commit to branch master
in repository guix.

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

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

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 47915dd20d..d139880501 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1069,6 +1069,23 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
                    "0ihnbdl058gvl2wdy45p5am55bq8ifx8m9mhcsgj9ax8yxlzvvvh"
                    #:patches '("clang-8.0-libc-search-path.patch")))
 
+(define-public libomp-8
+  (package
+    (inherit libomp-9)
+    (version (package-version llvm-8))
+    (source (origin
+              (method url-fetch)
+              (uri (llvm-uri "openmp" version))
+              (sha256
+               (base32
+                "0b3jlxhqbpyd1nqkpxjfggm5d9va5qpyf7d4i5y7n4a1mlydv19y"))
+              (file-name (string-append "libomp-" version ".tar.xz"))))
+    (native-inputs
+     (modify-inputs (package-native-inputs libomp-9)
+       (replace "clang" clang-8)
+       (replace "llvm" llvm-8)))
+    (license license:ncsa)))
+
 (define-public clang-toolchain-8
   (make-clang-toolchain clang-8))
 



reply via email to

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