Browse Source

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
tags/v0.2.20^2
Martin Kroeker GitHub 8 years ago
parent
commit
31e086d6a6
3 changed files with 5 additions and 2 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      Makefile.rule
  3. +3
    -0
      Makefile.system

+ 1
- 1
Makefile View File

@@ -17,7 +17,7 @@ SUBDIRS += lapack
endif

RELA =
ifneq ($(BUILD_RELAPACK), 0)
ifeq ($(BUILD_RELAPACK), 1)
RELA = re_lapack
endif



+ 1
- 1
Makefile.rule View File

@@ -84,7 +84,7 @@ VERSION = 0.2.20.dev
BUILD_LAPACK_DEPRECATED = 1

# Build RecursiveLAPACK on top of LAPACK
BUILD_RELAPACK = 1
# BUILD_RELAPACK = 1

# If you want to use legacy threaded Level 3 implementation.
# USE_SIMPLE_THREADED_LEVEL3 = 1


+ 3
- 0
Makefile.system View File

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

ifeq ($(ONLY_CBLAS), 1)


Loading…
Cancel
Save