diff options
author | Greg Hogan <code@greghogan.com> | 2022-07-20 15:09:07 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-04 12:05:49 +0200 |
commit | 93c71314d33f6082e13806d2d8da276a2a8fa559 (patch) | |
tree | c8a3f19e61b55de57a3504e54101474f1f9f324a /gnu/packages/llvm.scm | |
parent | 79e91394789adc10f3cba5b06cfc4f26baf7182c (diff) | |
download | guix-93c71314d33f6082e13806d2d8da276a2a8fa559.tar.gz |
gnu: Add libomp-7.
* gnu/packages/llvm.scm (libomp-7): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/llvm.scm')
-rw-r--r-- | gnu/packages/llvm.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index c3a1b875e0..773870b256 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1111,6 +1111,22 @@ with that of libgomp, the GNU Offloading and Multi Processing Library.") "0vc4i87qwxnw9lci4ayws9spakg0z6w5w670snj9f8g5m9rc8zg9" #:patches '("clang-7.0-libc-search-path.patch"))) +(define-public libomp-7 + (package + (inherit libomp-8) + (version (package-version llvm-7)) + (source (origin + (method url-fetch) + (uri (llvm-uri "openmp" version)) + (sha256 + (base32 + "1dg53wzsci2kra8lh1y0chh60h2l8h1by93br5spzvzlxshkmrqy")) + (file-name (string-append "libomp-" version ".tar.xz")))) + (native-inputs + (modify-inputs (package-native-inputs libomp-8) + (replace "clang" clang-7) + (replace "llvm" llvm-7))))) + (define-public clang-toolchain-7 (make-clang-toolchain clang-7)) |