File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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
2222
2323option (BUILD_LAPACK_DEPRECATED "When building LAPACK, include also some older, deprecated routines" ON )
2424
25+ set (LAPACK_STRLEN "" CACHE STRING "When building LAPACK, use this type (e.g. \" int\" ) for character lengths (defaults to size_t)" )
26+
2527option (BUILD_TESTING "Build LAPACK testsuite when building LAPACK" ON )
2628
2729option (BUILD_BENCHMARKS "Build the collection of BLAS/LAPACK benchmarks" OFF )
Original file line number Diff line number Diff line change 4545LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -O -Og -Os,$(LAPACK_FFLAGS ) )
4646endif
4747
48+ ifdef LAPACK_STRLEN
49+ LAPACK_FFLAGS += -DLAPACK_STRLEN=$(LAPACK_STRLEN )
50+ endif
51+
4852SUBDIRS_ALL = $(SUBDIRS ) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
4953
5054.PHONY : all libs netlib $(RELA ) test ctest shared install
You can’t perform that action at this time.
0 commit comments