aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--src/gemma.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b3759f0..3062afb 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@
# Set this variable to either LNX or MAC
SYS = LNX # LNX|MAC (Linux is the default)
# Leave blank after "=" to disable; put "= 1" to enable
-DIST_NAME = gemma-0.97.2
+DIST_NAME = gemma-0.97.3
DEBUG = 1 # DEBUG mode, set DEBUG=0 for a release
SHOW_COMPILER_WARNINGS =
WITH_LAPACK = 1
@@ -100,7 +100,7 @@ HDR =
LIBS_LNX_D_LAPACK = -llapack
LIBS_LNX_D_BLAS = -lblas
LIBS_LNX_D_OPENBLAS = -lopenblas
-LIBS_MAC_D_LAPACK = -framework Veclib
+LIBS_MAC_D_LAPACK = -framework Accelerate
# LIBS_LNX_S_LAPACK = /usr/lib/libgsl.a /usr/lib/libgslcblas.a /usr/lib/lapack/liblapack.a -lz
LIBS_LNX_S_LAPACK = /usr/lib/lapack/liblapack.a -lgfortran /usr/lib/atlas-base/libatlas.a /usr/lib/libblas/libblas.a -Wl,--allow-multiple-definition
diff --git a/src/gemma.cpp b/src/gemma.cpp
index 8f141a9..61fffc9 100644
--- a/src/gemma.cpp
+++ b/src/gemma.cpp
@@ -49,7 +49,7 @@
using namespace std;
-GEMMA::GEMMA(void) : version("0.97.2"), date("08/21/2017"), year("2017") {}
+GEMMA::GEMMA(void) : version("0.97.3"), date("10/10/2017"), year("2017") {}
void gemma_gsl_error_handler (const char * reason,
const char * file,