From e30f0f89afcfb748d464fbe84e0566a36f2bee87 Mon Sep 17 00:00:00 2001 From: Bram Metsch Date: Thu, 7 Sep 2023 18:07:29 +0200 Subject: IntelLLVM: Suppress -Rdebug-disables-optimization on debug builds IntelLLVM 2023.0.0 and above emit this remark if `-g` is used without any `-O` flag, which is our default behavior. Add another flag to suppress the remark. --- Modules/Compiler/IntelLLVM.cmake | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Modules/Compiler/IntelLLVM.cmake b/Modules/Compiler/IntelLLVM.cmake index e256c8f..f3c0bf4 100644 --- a/Modules/Compiler/IntelLLVM.cmake +++ b/Modules/Compiler/IntelLLVM.cmake @@ -44,6 +44,13 @@ else() string(APPEND CMAKE_${lang}_FLAGS_INIT " ") string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -g") + if(CMAKE_${lang}_COMPILER_VERSION VERSION_GREATER_EQUAL 2023.0.0) + if("x${lang}" STREQUAL "xFortran") + string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -diag-disable:10440") + else() + string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -Rno-debug-disables-optimization") + endif() + endif() string(APPEND CMAKE_${lang}_FLAGS_MINSIZEREL_INIT " -Os") string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -O3") string(APPEND CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT " -O2 -g") -- cgit v0.12