Skip to content

Commit

Permalink
Merge pull request #8860 from JuliaLang/sf/openblas_dynamic_arch
Browse files Browse the repository at this point in the history
Setting OPENBLAS_TARGET_ARCH disables OPENBLAS_DYNAMIC_ARCH by default
  • Loading branch information
staticfloat committed Nov 2, 2014
2 parents 3fc9727 + a652df6 commit 07461d7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
## your local machine, in a file named `Make.user` in this directory

# OPENBLAS build options
OPENBLAS_TARGET_ARCH=

# If OPENBLAS_TARGET_ARCH is set, we default to disabling OPENBLAS_DYNAMIC_ARCH
ifneq ($(OPENBLAS_TARGET_ARCH),)
OPENBLAS_DYNAMIC_ARCH=0
else
OPENBLAS_DYNAMIC_ARCH=1
endif
OPENBLAS_USE_THREAD=1
OPENBLAS_TARGET_ARCH=

# Use libraries available on the system instead of building them
USE_SYSTEM_LLVM=0
Expand Down

0 comments on commit 07461d7

Please sign in to comment.