diff options
author | Greg Hogan <code@greghogan.com> | 2022-07-20 15:09:06 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-04 12:05:48 +0200 |
commit | 79e91394789adc10f3cba5b06cfc4f26baf7182c (patch) | |
tree | 3cf01d2601b6e774bcd1b77e23d4508170dd3cd4 /gnu/packages/llvm.scm | |
parent | fe4683b2cf2997350ed9a1d351a27baf1e8d8d21 (diff) | |
download | guix-79e91394789adc10f3cba5b06cfc4f26baf7182c.tar.gz |
gnu: clang-toolchain-8: Use libomp-8.
* gnu/packages/llvm.scm (clang-toolchain-8): Switch dependency from the default libomp-13 to libomp-8. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/llvm.scm')
-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 d139880501..c3a1b875e0 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1087,7 +1087,7 @@ with that of libgomp, the GNU Offloading and Multi Processing Library.") (license license:ncsa))) (define-public clang-toolchain-8 - (make-clang-toolchain clang-8)) + (make-clang-toolchain clang-8 libomp-8)) (define-public llvm-7 (package |