From 52fbf5673eb78f217112ee87cbeffd7a9064929a Mon Sep 17 00:00:00 2001 From: Lukas Abelt Date: Wed, 4 Oct 2023 09:05:01 +0200 Subject: [PATCH] * Disabled MPI build for HyTeG/Walberla --- varats/varats/projects/cpp_projects/hyteg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varats/varats/projects/cpp_projects/hyteg.py b/varats/varats/projects/cpp_projects/hyteg.py index a5b053748..f56aa834d 100644 --- a/varats/varats/projects/cpp_projects/hyteg.py +++ b/varats/varats/projects/cpp_projects/hyteg.py @@ -64,7 +64,7 @@ def compile(self) -> None: with local.cwd(hyteg_source / "build"): with local.env(CC=str(cc_compiler), CXX=str(cxx_compiler)): - bb.watch(cmake)("..") + bb.watch(cmake)("..", "-DWALBERLA_BUILD_WITH_MPI=OFF") with local.cwd(hyteg_source / "build" / "apps"): bb.watch(make)("-j", get_number_of_jobs(bb_cfg()))