Skip to content

Commit

Permalink
eased fatal to warning if compiler is not supporting MKL library
Browse files Browse the repository at this point in the history
  • Loading branch information
tzwinger committed Jul 15, 2024
1 parent 99abe68 commit 9077e97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmake/Modules/FindMKL.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ ELSEIF(${CMAKE_Fortran_COMPILER_ID} MATCHES "PGI")
SET(MKL_THR_BASENAME "pgi")
SET(MKL_Fortran_FLAGS "" CACHE STRING "MKL Fortran flags")
ELSE()
MESSAGE(FATAL_ERROR "Finding MKL libraries not implemented for
MESSAGE(WARNING "Finding MKL libraries not implemented for
${CMAKE_Fortran_COMPILER_ID}")
SET(MKL_FOUND FALSE)
RETURN()
ENDIF()

# From MKL link line advisor
Expand Down

0 comments on commit 9077e97

Please sign in to comment.