cmake: Check if Fortran compiler is usable before enabling it.

This commit is contained in:
Markus Mützel 2022-01-21 13:27:17 +01:00
parent c1c0d5ce1d
commit 00f44bfff7
1 changed files with 8 additions and 11 deletions

View File

@ -20,19 +20,16 @@
# NEEDBUNDERSCORE
# NEED2UNDERSCORES
if (NOT NO_LAPACK)
include(CheckLanguage)
check_language(Fortran)
if(CMAKE_Fortran_COMPILER)
enable_language(Fortran)
else()
message(STATUS "No Fortran compiler found, can build only BLAS but not LAPACK")
include(CheckLanguage)
check_language(Fortran)
if(CMAKE_Fortran_COMPILER)
enable_language(Fortran)
else()
if (NOT NO_LAPACK)
message(STATUS "No Fortran compiler found, can build only BLAS but not LAPACK")
endif()
set (NOFORTRAN 1)
set (NO_LAPACK 1)
endif()
else()
include(CMakeForceCompiler)
CMAKE_FORCE_Fortran_COMPILER(gfortran GNU)
endif()
if (NOT ONLY_CBLAS)