Skip to content

Commit

Permalink
Test F08 with latest GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
alazzaro committed Jul 7, 2023
1 parent 9d6678a commit 65c8db9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/testing-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
-DUSE_MPI=OFF \
-DUSE_OPENMP=ON \
-DUSE_SMM=blas \
-DUSE_MPI_F08=ON \
..
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ include(CMakeDependentOption)
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
option(USE_OPENMP "Build with OpenMP support" ON)
option(USE_MPI "Build with MPI support" ON)
option(USE_MPI_F08 "Build with the mpi_f08 module support" ON)
option(USE_MPI_F08 "Build with the mpi_f08 module support" OFF)
cmake_dependent_option(
WITH_C_API "Build the C API (ISO_C_BINDINGS)" ON "USE_MPI" OFF
)# the ISO_C_BINDINGS require MPI unconditionally
Expand Down Expand Up @@ -203,7 +203,7 @@ Intel MPI compiler wrappers. Check the INSTALL.md for more information.")
message(
FATAL_ERROR
"The listed MPI implementation does not provide the required mpi_f08.mod interface."
"Consider to use USE_MPI_F08=OFF to disable it.")
)
endif ()
endif ()
if ("${MPI_Fortran_LIBRARY_VERSION_STRING}" MATCHES "Open MPI v2.1"
Expand Down

0 comments on commit 65c8db9

Please sign in to comment.