gnu: Add libomp-7.

* gnu/packages/llvm.scm (libomp-7): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Greg Hogan 2022-07-20 15:09:07 +00:00 committed by Ludovic Courtès
parent 79e9139478
commit 93c71314d3
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1111,6 +1111,22 @@ (define-public clang-7
"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))