me
/
guix
Archived
1
0
Fork 0

gnu: Add libomp-12.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Greg Hogan 2022-07-20 15:08:57 +00:00 committed by Ludovic Courtès
parent a46a980abe
commit 68dfb535d3
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 21 additions and 0 deletions

View File

@ -855,6 +855,27 @@ with that of libgomp, the GNU Offloading and Multi Processing Library.")
(base32
"1r9a4fdz9ci58b5z2inwvm4z4cdp6scrivnaw05dggkxz7yrwrb5")))))
(define-public libomp-12
(package
(inherit libomp-13)
(version (package-version llvm-12))
(source (origin
(method url-fetch)
(uri (llvm-uri "openmp" version))
(sha256
(base32
"14dh0r6h2xh747ffgnsl4z08h0ri04azi9vf79cbz7ma1r27kzk0"))
(file-name (string-append "libomp-" version ".tar.xz"))))
(arguments
'(#:configure-flags '("-DLIBOMP_USE_HWLOC=ON"
"-DOPENMP_TEST_C_COMPILER=clang"
"-DOPENMP_TEST_CXX_COMPILER=clang++")
#:test-target "check-libomp"))
(native-inputs
(modify-inputs (package-native-inputs libomp-13)
(replace "clang" clang-12)
(replace "llvm" llvm-12)))))
(define-public clang-toolchain-12
(make-clang-toolchain clang-12))