mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add libomp-9.
* gnu/packages/llvm.scm (libomp-9): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a72bebf8f5
commit
16d6a618fa
1 changed files with 16 additions and 0 deletions
|
@ -1026,6 +1026,22 @@ (define-public clang-9
|
|||
"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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue