From 40aa12aa18ec66662b9261c494d937cb6464c806 Mon Sep 17 00:00:00 2001 From: jamt9000 Date: Mon, 3 Mar 2014 17:07:23 +0000 Subject: [PATCH] Fixed order of cblas and atlas linker flags They were the wrong way round, causing linking to fail in some cases --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f2e91c..e61fb63 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ ifeq ($(USE_MKL), 1) INCLUDE_DIRS += $(MKL_INCLUDE_DIR) LIBRARY_DIRS += $(MKL_LIB_DIR) else - LIBRARIES += atlas cblas + LIBRARIES += cblas atlas endif COMMON_FLAGS += $(foreach includedir,$(INCLUDE_DIRS),-I$(includedir)) -- 2.7.4