Skip to content

Commit

Permalink
fix blas_vendor for v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Jun 7, 2016
1 parent affebe6 commit 9a827f7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@ if !libmxnet_detected

openblas_path = Libdl.dlpath(Libdl.dlopen(Base.libblas_name))

if VERSION >= v"0.5.0-dev+4338"
blas_vendor = Base.BLAS.vendor()
else
blas_vendor = Base.blas_vendor()
end

ilp64 = ""
if Base.blas_vendor() == :openblas64
if blas_vendor == :openblas64
ilp64 = "-DINTERFACE64"
end

Expand Down

0 comments on commit 9a827f7

Please sign in to comment.