We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296e06a commit 26a81d1Copy full SHA for 26a81d1
CMakeLists.txt
@@ -99,6 +99,10 @@ elseif(CMAKE_Fortran_COMPILER_ID STREQUAL Intel)
99
check_fortran_compiler_flag("-recursive" _recursiveFlag)
100
elseif(CMAKE_Fortran_COMPILER_ID STREQUAL XL)
101
check_fortran_compiler_flag("-qrecur" _qrecurFlag)
102
+else()
103
+ message(WARNING "Fortran local arrays should be allocated on the stack."
104
+ " Please use a compiler which guarantees that feature."
105
+ " See https://github.com/Reference-LAPACK/lapack/pull/188 and references therein.")
106
endif()
107
108
# Add recursive flag
0 commit comments