Skip to content

Commit

Permalink
Don't bail out in the binary-dist target, if openblas
Browse files Browse the repository at this point in the history
is not compiled with dynamic arch support.
This is not available on ARM, and in any case, it seems ok to
just print a warning.
  • Loading branch information
Viral B. Shah committed Jul 25, 2015
1 parent 8d137a2 commit 0c74c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -387,8 +387,8 @@ dist:
binary-dist: distclean
ifeq ($(USE_SYSTEM_BLAS),0)
ifneq ($(OPENBLAS_DYNAMIC_ARCH),1)
@echo OpenBLAS must be rebuilt with OPENBLAS_DYNAMIC_ARCH=1 to use binary-dist target
@false
@echo OpenBLAS is not built with OPENBLAS_DYNAMIC_ARCH=1.
@echo This may lead to suboptimal performance on other architectures.
endif
endif
ifneq ($(prefix),$(abspath julia-$(JULIA_COMMIT)))
Expand Down

0 comments on commit 0c74c7c

Please sign in to comment.