Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions repos/spack_repo/builtin/packages/mmseqs2/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ class Mmseqs2(CMakePackage, CudaPackage):
level=1,
)

@when("@18-8cc5c+cuda")
def patch(self):
filter_file(
r'^(#include "GpuUtil.h")', "\\1\n#include <thread>\n", "src/util/gpuserver.cpp"
)

# apple-clang will build with +openmp with llvm-openmp as a dependency
# however when running with real data, it threw segmentation faults
conflicts("%apple-clang", when="+openmp")
Expand Down
Loading