File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ option(BUILD_WITHOUT_LAPACK "Do not build LAPACK and LAPACKE (Only BLAS or CBLAS
22
22
23
23
option (BUILD_LAPACK_DEPRECATED "When building LAPACK, include also some older, deprecated routines" ON )
24
24
25
+ set (LAPACK_STRLEN "" CACHE STRING "When building LAPACK, use this type (e.g. \" int\" ) for character lengths (defaults to size_t)" )
26
+
25
27
option (BUILD_TESTING "Build LAPACK testsuite when building LAPACK" ON )
26
28
27
29
option (BUILD_BENCHMARKS "Build the collection of BLAS/LAPACK benchmarks" OFF )
Original file line number Diff line number Diff line change 45
45
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -O -Og -Os,$(LAPACK_FFLAGS ) )
46
46
endif
47
47
48
+ ifdef LAPACK_STRLEN
49
+ LAPACK_FFLAGS += -DLAPACK_STRLEN=$(LAPACK_STRLEN )
50
+ endif
51
+
48
52
SUBDIRS_ALL = $(SUBDIRS ) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
49
53
50
54
.PHONY : all libs netlib $(RELA ) test ctest shared install
You can’t perform that action at this time.
0 commit comments