diff options
author | Pjotr Prins | 2017-12-18 12:14:58 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-12-18 12:14:58 +0000 |
commit | e0d3e2530123265011e7700a96c7462c6a454b65 (patch) | |
tree | f946e004f3e4199b6be014ee14aa3ebcdfd3bfd8 /Makefile | |
parent | 2c0f5551517c088b8ea20f0a09de9d11109447b4 (diff) | |
download | pangemma-e0d3e2530123265011e7700a96c7462c6a454b65.tar.gz |
Getting ready for release. Defaulting to OpenBlas
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,13 +10,13 @@ # # Examples: # -# Make GEMMA on Linux with OPENBLAS support: +# Make GEMMA on Linux without OPENBLAS support: # -# make WITH_OPENBLAS=1 +# make WITH_OPENBLAS= # # Disable debug info and checks (slightly faster release mode) # -# make WITH_OPENBLAS=1 DEBUG= +# make DEBUG= # # Force static compilation # @@ -47,7 +47,7 @@ DIST_NAME = gemma-$(GEMMA_VERSION) DEBUG = 1 # DEBUG mode, set DEBUG=0 for a release SHOW_COMPILER_WARNINGS = WITH_LAPACK = 1 -WITH_OPENBLAS = # Defaults to LAPACK - OPENBLAS may be faster +WITH_OPENBLAS = 1 # Without OpenBlas uses LAPACK OPENBLAS_LEGACY = # Using older OpenBlas FORCE_STATIC = # Static linking of libraries GCC_FLAGS = -Wall -O3 -std=gnu++11 # extra flags -Wl,--allow-multiple-definition |