Skip to content

Commit

Permalink
Only use gcc to compile mutatees on linux (#148)
Browse files Browse the repository at this point in the history
Clang _should_ work, but it will be added later. The test suite will not compile with any other compiler.
  • Loading branch information
hainest committed Apr 21, 2020
1 parent 3a48d0d commit ee699b7
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -331,22 +331,6 @@ if(UNIX)
message(STATUS "Mutatee gcc: ${M_gnu_cc}")
find_program(M_gnu_cxx NAMES g++)
message(STATUS "Mutatee g++: ${M_gnu_cxx}")
find_program(M_intel_cc NAMES icc)
message(STATUS "Mutatee icc: ${M_intel_cc}")
find_program(M_intel_CC NAMES icpc)
message(STATUS "Mutatee icpc: ${M_intel_CC}")
find_program(M_pg_cc NAMES pgcc)
message(STATUS "Mutatee pgcc: ${M_pg_cc}")
find_program(M_pg_cxx NAMES pgCC)
message(STATUS "Mutatee pgCC: ${M_pg_cxx}")
find_program(M_mpi_cc NAMES mpicc)
message(STATUS "Mutatee mpicc: ${M_mpi_cc}")
find_program(M_mpi_cxx NAMES mpicxx)
message(STATUS "Mutatee mpicxx: ${M_mpi_cxx}")
find_program(M_mpi_xlc NAMES mpixlc)
message(STATUS "Mutatee mpixlc: ${M_mpi_xlc}")
find_program(M_mpi_xlcxx NAMES mpixlcxx)
message(STATUS "Mutatee mpixlcxx: ${M_mpi_xlcxx}")
elseif(WIN32)
find_program(M_native_cc NAMES cl)
find_program(M_native_cxx NAMES cl)
Expand Down

0 comments on commit ee699b7

Please sign in to comment.