File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ foreach(symbol ${NEEDED_SYMBOLS})
110
110
CHECK_SYMBOL_EXISTS (${symbol} "${MPI_HEADERS} " HAVE_${symbol} )
111
111
if (NOT HAVE_${symbol} )
112
112
message ( STATUS "\$ {HAVE_${symbol} } = ${HAVE_${symbol} }" )
113
- message ( WARNING "Disabling Failed Image support due to lack of support in the current MPI implementation." )
113
+ message ( WARNING
114
+ "Note: Failed Images not supported by the current MPI implementation! (Needs MPIX experimental features--as of MPI3)" )
114
115
set (MPI_HAS_FAULT_TOL_EXT NO )
115
116
break () # no need to keep looking
116
117
endif ()
@@ -122,7 +123,11 @@ set(CMAKE_REQUIRED_LIBRARIES ${old_cmake_required_libraries})
122
123
if (MPI_HAS_FAULT_TOL_EXT ) # AND (NOT openmpi))
123
124
option (CAF_ENABLE_FAILED_IMAGES "Enable failed images support" TRUE )
124
125
else ()
125
- set (CAF_ENABLE_FAILED_IMAGES FALSE CACHE BOOL "Enable failed images support" FORCE )
126
+ set (CAF_ENABLE_FAILED_IMAGES FALSE
127
+ CACHE
128
+ BOOL
129
+ "Enable failed images support (no support in the selected MPI implementation)"
130
+ FORCE )
126
131
endif ()
127
132
128
133
if (CAF_ENABLE_FAILED_IMAGES )
You can’t perform that action at this time.
0 commit comments