From 132092797eed94377ecf759cd0c6749b6643d681 Mon Sep 17 00:00:00 2001 From: scivision Date: Thu, 8 Feb 2024 09:49:22 -0500 Subject: [PATCH] more intel options --- cmake/compilers.cmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmake/compilers.cmake b/cmake/compilers.cmake index 2033171..15ef6ab 100644 --- a/cmake/compilers.cmake +++ b/cmake/compilers.cmake @@ -5,5 +5,9 @@ endif() if(CMAKE_Fortran_COMPILER_ID STREQUAL "GNU") add_compile_options($<$:-Wall>) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^Intel") - add_compile_options($<$:-warn>) + add_compile_options( + "$<$:-warn>" + "$<$,$>:-check;-traceback>" + "$<$:-Rno-debug-disables-optimization>" + ) endif()