Created
September 30, 2012 06:54
-
-
Save staticfloat/3806092 to your computer and use it in GitHub Desktop.
julia make.inc openblas patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Make.inc b/Make.inc | |
| index b1fbf99..2d74730 100644 | |
| --- a/Make.inc | |
| +++ b/Make.inc | |
| @@ -170,8 +170,8 @@ endif | |
| ifeq ($(USE_SYSTEM_BLAS), 1) | |
| ifeq ($(OS), Darwin) | |
| -LIBBLAS = -framework vecLib -lBLAS | |
| -LIBBLASNAME = libblas | |
| +LIBBLAS = -lopenblas | |
| +LIBBLASNAME = libopenblas | |
| else | |
| LIBBLAS = -lblas | |
| LIBBLASNAME = libblas | |
| @@ -183,8 +183,8 @@ endif | |
| ifeq ($(USE_SYSTEM_LAPACK), 1) | |
| ifeq ($(OS), Darwin) | |
| -LIBLAPACK = -framework vecLib -lLAPACK | |
| -LIBLAPACKNAME = liblapack | |
| +LIBLAPACK = $(LIBBLAS) | |
| +LIBLAPACKNAME = $(LIBBLASNAME) | |
| else | |
| LIBLAPACK = -llapack | |
| LIBLAPACKNAME = liblapack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment