We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a4ca7 commit 32319a3Copy full SHA for 32319a3
cmake/f_check.cmake
@@ -45,13 +45,15 @@ if (NOT ONLY_CBLAS)
45
46
# TODO: detect whether underscore needed, set #defines and BU appropriately - use try_compile
47
# TODO: set FEXTRALIB flags a la f_check?
48
-
+ if (NOT (${CMAKE_SYSTEM_NAME} MATCHES "Windows" AND ${CMAKE_Fortran_COMPILER_ID} MATCHES "IntelLLVM"))
49
set(BU "_")
50
file(APPEND ${TARGET_CONF_TEMP}
51
"#define BUNDERSCORE _\n"
52
"#define NEEDBUNDERSCORE 1\n"
53
"#define NEED2UNDERSCORES 0\n")
54
+ else ()
55
+ set (FCOMMON_OPT "${FCOMMON_OPT} /fp:precise /recursive /names:lowercase /assume:nounderscore")
56
+ endif()
57
else ()
58
59
#When we only build CBLAS, we set NOFORTRAN=2
0 commit comments