The change was made because openblas has to be linked as "-lopenblas" and not "-lblas". This caused an error when compiling.
This commit is contained in:
savy-91 2014-09-23 21:57:16 +02:00
Родитель 22f47bb667
Коммит cc96b0b809
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -291,7 +291,7 @@ ifeq ($(BLAS), mkl)
BLAS_LIB ?= $(MKL_DIR)/lib $(MKL_DIR)/lib/intel64 BLAS_LIB ?= $(MKL_DIR)/lib $(MKL_DIR)/lib/intel64
else ifeq ($(BLAS), open) else ifeq ($(BLAS), open)
# OpenBLAS # OpenBLAS
LIBRARIES += blas LIBRARIES += openblas
else else
# ATLAS # ATLAS
ifeq ($(LINUX), 1) ifeq ($(LINUX), 1)