Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 12f9ec3b authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

when giving all the path to the libmpi.so it fails, use -lmpi instead

parent c38e09b3
No related branches found
No related tags found
No related merge requests found
......@@ -619,7 +619,9 @@ if (MORSE_DISTRIB_DIR OR EXISTS "${CMAKE_SOURCE_DIR}/cmake_modules/")
endif()
if (CHAMELEON_USE_MPI AND STARPU_MPI_LIBRARIES)
# Check if a specific function exist
set(CMAKE_REQUIRED_LIBRARIES "${STARPU_MPI_LIBRARIES} ${MPI_C_LIBRARIES}")
list(APPEND CMAKE_REQUIRED_INCLUDES "${MPI_C_INCLUDE_PATH}")
list(APPEND CMAKE_REQUIRED_FLAGS "${MPI_C_LINK_FLAGS}")
set(CMAKE_REQUIRED_LIBRARIES "${STARPU_MPI_LIBRARIES} -lmpi")
unset(STARPU_MPI_DATA_REGISTER_FOUND CACHE)
check_function_exists(starpu_mpi_data_register_comm STARPU_MPI_DATA_REGISTER_FOUND)
if ( STARPU_MPI_DATA_REGISTER_FOUND )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment