From 5514e2bdccf67d111d3997fb9653aeff235bb0d9 Mon Sep 17 00:00:00 2001 From: Eric Winter Date: Tue, 22 Feb 2022 14:40:07 -0500 Subject: [PATCH] Removed Intel compiler version check. --- cmake/compilers.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/compilers.cmake b/cmake/compilers.cmake index e8f38eaa..7341eb46 100644 --- a/cmake/compilers.cmake +++ b/cmake/compilers.cmake @@ -102,9 +102,9 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES Intel) endif() #Check Intel Fortran version - if(NOT ALLOW_INVALID_COMPILERS AND CMAKE_Fortran_COMPILER_VERSION VERSION_GREATER "22") - message(FATAL_ERROR "Intel Fortran compilers newer than 21 are not supported. Set the ALLOW_INVALID_COMPILERS variable to ON to force compilation at your own risk.") - endif() + # if(NOT ALLOW_INVALID_COMPILERS AND CMAKE_Fortran_COMPILER_VERSION VERSION_GREATER "23") + # message(FATAL_ERROR "Intel Fortran compilers newer than 21 are not supported. Set the ALLOW_INVALID_COMPILERS variable to ON to force compilation at your own risk.") + # endif() elseif(CMAKE_Fortran_COMPILER_ID MATCHES GNU) set(dialect "-ffree-form -ffree-line-length-none -fimplicit-none")