diff options
author | Greg Hogan <code@greghogan.com> | 2022-07-20 15:09:02 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-04 12:05:48 +0200 |
commit | a72bebf8f578931d042a3527906169a3b554441b (patch) | |
tree | 95192d1e77864b1f92d30f04b06071ba44122f1c /gnu | |
parent | 09d9b1ddae49d4b6f264fbd362047dd634761646 (diff) | |
download | guix-a72bebf8f578931d042a3527906169a3b554441b.tar.gz guix-a72bebf8f578931d042a3527906169a3b554441b.zip |
gnu: clang-toolchain-10: Use libomp-10.
* gnu/packages/llvm.scm (clang-toolchain-10): Switch dependency from the
default libomp-13 to libomp-10.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/llvm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index c0c0100f67..caa3e5e087 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -982,7 +982,7 @@ with that of libgomp, the GNU Offloading and Multi Processing Library.") (replace "llvm" llvm-10))))) (define-public clang-toolchain-10 - (make-clang-toolchain clang-10)) + (make-clang-toolchain clang-10 libomp-10)) (define-public llvm-9 (package |