Skip to content

Commit 2235b3d

Browse files
authored
Merge pull request #1998 from DLR-AMR/feature-MPI_require_v3
Improvement: Restrict MPI to version 3.0 or higher
2 parents 9cf1f44 + c6f5315 commit 2235b3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ endif()
108108

109109
if( T8CODE_ENABLE_MPI )
110110
if( T8CODE_BUILD_FORTRAN_INTERFACE )
111-
find_package( MPI COMPONENTS C Fortran REQUIRED )
111+
find_package( MPI 3.0 COMPONENTS C Fortran REQUIRED )
112112
else()
113-
find_package( MPI COMPONENTS C REQUIRED )
113+
find_package( MPI 3.0 COMPONENTS C REQUIRED )
114114
endif()
115115

116116
if( NOT MPIEXEC_EXECUTABLE )

0 commit comments

Comments
 (0)