From e56d56decece7e3f02d1aeb83e24a5f53c849443 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Wed, 11 Nov 2020 10:54:22 +0100 Subject: [PATCH] seems that Intel compilers are not tested --- cmake/Compiler-Intel.cmake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmake/Compiler-Intel.cmake b/cmake/Compiler-Intel.cmake index 6d96ff42d..719ed885b 100644 --- a/cmake/Compiler-Intel.cmake +++ b/cmake/Compiler-Intel.cmake @@ -98,11 +98,12 @@ set (DEBUG_FLAGS "${DEBUG_FLAGS} -ftrapuv") set (DEBUG_FLAGS "${DEBUG_FLAGS} -fpe-all=0") # ... capture all floating-point exceptions, sets -ftz automatically -set (DEBUG_FLAGS "${DEBUG_FLAGS} -warn") +# disable due to compiler bug https://community.intel.com/t5/Intel-Fortran-Compiler/false-positive-stand-f18-and-IEEE-SELECTED-REAL-KIND/m-p/1227336 +#set (DEBUG_FLAGS "${DEBUG_FLAGS} -warn") # enables warnings ... -set (DEBUG_FLAGS "${DEBUG_FLAGS} errors") +#set (DEBUG_FLAGS "${DEBUG_FLAGS} errors") # ... warnings are changed to errors -set (DEBUG_FLAGS "${DEBUG_FLAGS},stderrors") +#set (DEBUG_FLAGS "${DEBUG_FLAGS},stderrors") # ... warnings about Fortran standard violations are changed to errors set (DEBUG_FLAGS "${DEBUG_FLAGS} -debug-parameters all")