Skip to content

Commit

Permalink
Changed "blas" to "openblas"
Browse files Browse the repository at this point in the history
The change was made because openblas has to be linked as "-lopenblas" and not "-lblas". This caused an error when compiling.
  • Loading branch information
savy-91 committed Sep 23, 2014
1 parent 22f47bb commit cc96b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cc96b0b

Please sign in to comment.