From cc96b0b80965cc2d8d3b94a9e52347aa5917cc9f Mon Sep 17 00:00:00 2001 From: savy-91 Date: Tue, 23 Sep 2014 21:57:16 +0200 Subject: [PATCH] Changed "blas" to "openblas" The change was made because openblas has to be linked as "-lopenblas" and not "-lblas". This caused an error when compiling. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5020b4109d6..e85f338ed23 100644 --- a/Makefile +++ b/Makefile @@ -291,7 +291,7 @@ ifeq ($(BLAS), mkl) BLAS_LIB ?= $(MKL_DIR)/lib $(MKL_DIR)/lib/intel64 else ifeq ($(BLAS), open) # OpenBLAS - LIBRARIES += blas + LIBRARIES += openblas else # ATLAS ifeq ($(LINUX), 1)