Disable ReLAPACK by default (#1238)

* Disable ReLAPACK by default; mention it in final build message if included

* Add files via upload

* Add files via upload

* Add files via upload
This commit is contained in:
Martin Kroeker 2017-07-13 22:01:47 +02:00 committed by GitHub
parent cbb47736af
commit 31e086d6a6
3 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,7 @@ SUBDIRS += lapack
endif endif
RELA = RELA =
ifneq ($(BUILD_RELAPACK), 0) ifeq ($(BUILD_RELAPACK), 1)
RELA = re_lapack RELA = re_lapack
endif endif

View File

@ -84,7 +84,7 @@ VERSION = 0.2.20.dev
BUILD_LAPACK_DEPRECATED = 1 BUILD_LAPACK_DEPRECATED = 1
# Build RecursiveLAPACK on top of LAPACK # Build RecursiveLAPACK on top of LAPACK
BUILD_RELAPACK = 1 # BUILD_RELAPACK = 1
# If you want to use legacy threaded Level 3 implementation. # If you want to use legacy threaded Level 3 implementation.
# USE_SIMPLE_THREADED_LEVEL3 = 1 # USE_SIMPLE_THREADED_LEVEL3 = 1

View File

@ -1129,6 +1129,9 @@ LIB_COMPONENTS += LAPACK
ifneq ($(NO_LAPACKE), 1) ifneq ($(NO_LAPACKE), 1)
LIB_COMPONENTS += LAPACKE LIB_COMPONENTS += LAPACKE
endif endif
ifeq ($(BUILD_RELAPACK), 1)
LIB_COMPONENTS += ReLAPACK
endif
endif endif
ifeq ($(ONLY_CBLAS), 1) ifeq ($(ONLY_CBLAS), 1)