Skip to content

Commit

Permalink
Setting OPENBLAS_TARGET_ARCH should disable OPENBLAS_DYNAMIC_ARCH by …
Browse files Browse the repository at this point in the history
…default
  • Loading branch information
staticfloat committed Oct 30, 2014
1 parent 9451b33 commit a652df6
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 a652df6

Please sign in to comment.