We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 997ed22 commit e72f1e3Copy full SHA for e72f1e3
deps/build.jl
@@ -1,7 +1,7 @@
1
using BinDeps
2
using LinearAlgebra, Libdl
3
4
-@BinDeps.setup
+BinDeps.@setup
5
6
blas = library_dependency("libblas", alias=["libblas.dll"])
7
lapack = library_dependency("liblapack", alias=["liblapack.dll"])
@@ -32,6 +32,14 @@ include("constants.jl")
32
include("compile.jl")
33
34
# @info "libname = $libname"
35
+const depends = if JULIA_LAPACK
36
+ # Create a new `bindeps_context` global variable that does not
37
+ # have `blas` and `lapack` in the list of dependencies.
38
+ BinDeps.@setup
39
+ []
40
+else
41
+ [blas, lapack]
42
+end
43
depends = JULIA_LAPACK ? [] : [blas, lapack]
44
45
# LaPack/BLAS dependencies
0 commit comments