Skip to content

Commit 32319a3

Browse files
authored
Add options for Intel oneAPI 2025.0 ifx on Windows
1 parent 37a4ca7 commit 32319a3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cmake/f_check.cmake

+4-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,15 @@ if (NOT ONLY_CBLAS)
4545

4646
# TODO: detect whether underscore needed, set #defines and BU appropriately - use try_compile
4747
# TODO: set FEXTRALIB flags a la f_check?
48-
48+
if (NOT (${CMAKE_SYSTEM_NAME} MATCHES "Windows" AND ${CMAKE_Fortran_COMPILER_ID} MATCHES "IntelLLVM"))
4949
set(BU "_")
5050
file(APPEND ${TARGET_CONF_TEMP}
5151
"#define BUNDERSCORE _\n"
5252
"#define NEEDBUNDERSCORE 1\n"
5353
"#define NEED2UNDERSCORES 0\n")
54-
54+
else ()
55+
set (FCOMMON_OPT "${FCOMMON_OPT} /fp:precise /recursive /names:lowercase /assume:nounderscore")
56+
endif()
5557
else ()
5658

5759
#When we only build CBLAS, we set NOFORTRAN=2

0 commit comments

Comments
 (0)