Skip to content

Commit c1f12cd

Browse files
author
Matthew Emmett
committed
Merge branch 'feature/mpi-pf' of github.com:memmett/PFASST into feature/mpi-pf
2 parents fac5de2 + b4264e1 commit c1f12cd

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ script:
3535
- mkdir build
3636
- cd build
3737
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -Dpfasst_WITH_MPI=${WITH_MPI} -Dpfasst_DISABLE_LIBCXX=ON -Dpfasst_BUILD_TESTS=ON -Dpfasst_BUILD_EXAMPLES=ON ..
38+
- if [ "${WITH_MPI}" == "ON" ]; then mpicxx --version; fi
3839
- make
3940
- make test
4041
- make run_example_all

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,7 @@ endif()
102102
message(STATUS "********************************************************************************")
103103

104104
message(STATUS "C++ Compiler ID: ${CMAKE_CXX_COMPILER_ID}")
105+
message(STATUS "C++ Compiler Names: ${CMAKE_CXX_COMPILER_NAMES}")
106+
message(STATUS "C++ Compiler Version: ${CMAKE_CXX_COMPILER_VERSION}")
105107
message(STATUS "C++ Flags: ${CMAKE_CXX_FLAGS}")
106108
message(STATUS "C++ link flags: ${CMAKE_CXX_LINK_FLAGS}")

0 commit comments

Comments
 (0)