File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ include(CMakePackageConfigHelpers)
20
20
#######
21
21
option (BUILD_WITHOUT_LAPACK "Do not build LAPACK and LAPACKE (Only BLAS or CBLAS)" OFF )
22
22
23
+ option (BUILD_LAPACK_DEPRECATED "When building LAPACK, include also some older, deprecated routines" ON )
24
+
23
25
option (BUILD_TESTING "Build LAPACK testsuite when building LAPACK" ON )
24
26
25
27
option (C_LAPACK "Build LAPACK from C sources instead of the original Fortran" OFF )
@@ -398,12 +400,12 @@ if (BUILD_SHARED_LIBS AND NOT ${SYMBOLPREFIX}${SYMBOLSUFFIX} STREQUAL "")
398
400
message (STATUS "adding suffix ${SYMBOLSUFFIX} to names of exported symbols in ${OpenBLAS_LIBNAME} " )
399
401
endif ()
400
402
401
- if (${BUILD_LAPACK_DEPRECATED} )
403
+ if (${BUILD_LAPACK_DEPRECATED} )
402
404
set (BLD 1 )
403
405
else ()
404
406
set (BLD 0 )
405
407
endif ()
406
- if (${BUILD_BFLOAT16} )
408
+ if (${BUILD_BFLOAT16} )
407
409
set (BBF16 1 )
408
410
else ()
409
411
set (BBF16 0 )
You can’t perform that action at this time.
0 commit comments