Vis: macOS llvm-openmp (#32284)

Add some OpenMP lib provider for Apple-Clang to the vis packages.
This commit is contained in:
Axel Huebl 2022-08-20 01:11:03 -07:00 committed by GitHub
parent 11a4f5e25d
commit 7db1c69945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,7 @@ class Apcomp(Package):
depends_on("cmake@3.9:", type="build")
depends_on("mpi", when="+mpi")
depends_on("llvm-openmp", when="+openmp %apple-clang")
root_cmakelists_dir = "src"

View File

@ -66,6 +66,8 @@ class Raja(CachedCMakePackage, CudaPackage, ROCmPackage):
depends_on("cmake@:3.20", when="+rocm", type="build")
depends_on("cmake@3.14:", when="@2022.03.0:")
depends_on("llvm-openmp", when="+openmp %apple-clang")
with when("+rocm @0.12.0:"):
depends_on("camp+rocm")
for arch in ROCmPackage.amdgpu_targets:

View File

@ -90,6 +90,7 @@ class VtkM(CMakePackage, CudaPackage, ROCmPackage):
depends_on("cuda@10.1.0:", when="+cuda_native")
depends_on("tbb", when="+tbb")
depends_on("mpi", when="+mpi")
depends_on("llvm-openmp", when="+openmp %apple-clang")
# VTK-m uses the default Kokkos backend
depends_on("kokkos", when="+kokkos")