Skip to content

Commit

Permalink
don't download and build LLVM if USE_SYSTEM_LLVM is 1
Browse files Browse the repository at this point in the history
closes #379
  • Loading branch information
JeffBezanson committed Feb 19, 2012
1 parent e0bdc5a commit cc9aed0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion external/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,20 @@ include $(JULIAHOME)/Make.inc

OS = $(shell uname)
ARCH = $(shell uname -m)
LIBS = llvm pcre fdlibm dsfmt openblas lapack arpack fftw suitesparse suitesparse-wrapper double-conversion amos
LIBS = pcre fdlibm dsfmt openblas lapack arpack fftw suitesparse suitesparse-wrapper double-conversion amos

ifeq ($(OS), Linux)
LIBS += unwind
endif

ifeq ($(USE_SYSTEM_READLINE), 0)
LIBS += readline
endif

ifeq ($(USE_SYSTEM_LLVM), 0)
LIBS += llvm
endif

ifeq ($(USE_DEBIAN), 1)
LIBS = fdlibm dsfmt double-conversion amos suitesparse-wrapper
endif
Expand Down

0 comments on commit cc9aed0

Please sign in to comment.