From 8597ff255020980a7e79603331b5d1dd6a7a42b9 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Fri, 28 Sep 2018 09:37:36 +0000 Subject: Atlas compilation (still not working) --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 916115e..17bad5f 100644 --- a/Makefile +++ b/Makefile @@ -65,6 +65,7 @@ DEBUG = 1 # DEBUG mode, set DEBUG=0 for a releas PROFILING = # Add profiling info SHOW_COMPILER_WARNINGS = WITH_OPENBLAS = 1 # Without OpenBlas uses LAPACK +WITH_ATLAS = # In place of OpenBlas(?) WITH_LAPACK = # Force linking LAPACK (if OpenBlas lacks it) WITH_GSLCBLAS = # Force linking gslcblas (if OpenBlas lacks it) OPENBLAS_LEGACY = # Using older OpenBlas @@ -129,7 +130,9 @@ ifdef WITH_OPENBLAS CPPFLAGS += -DOPENBLAS_LEGACY endif else - CPPFLAGS += -DUSE_BLAS=atlas + ifdef WITH_ATLAS + CPPFLAGS += -DUSE_BLAS=atlas + endif endif ifeq ($(CXX), clang++) -- cgit v1.2.3