gnu: clang-toolchain: Add libomp.

* gnu/packages/llvm.scm (make-clang-toolchain)[inputs]: Add LIBOMP.
This commit is contained in:
Ludovic Courtès 2021-11-15 11:28:26 +01:00 committed by Ludovic Courtès
parent 3288d6bf76
commit 2a32c99b38
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 0 deletions

View File

@ -473,6 +473,7 @@ output), and Binutils.")
(inputs `(("clang" ,clang)
("ld-wrapper" ,(car (assoc-ref (%final-inputs) "ld-wrapper")))
("binutils" ,binutils)
("libomp" ,libomp) ;used when linking with '-fopenmp'
("libc" ,glibc)
("libc-debug" ,glibc "debug")
("libc-static" ,glibc "static")))))