File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ You should link a LAPACKE implementation to a final crate (like binary executabl
60
60
[dependencies ]
61
61
ndarray = " 0.12"
62
62
ndarray-linalg = " 0.10"
63
- openblas-src = " 0.5 " # or another backend of your choice
63
+ openblas-src = " 0.7 " # or another backend of your choice
64
64
65
65
```
66
66
@@ -71,3 +71,14 @@ extern crate ndarray;
71
71
extern crate ndarray_linalg;
72
72
extern crate openblas_src; // or another backend of your choice
73
73
```
74
+
75
+ ### Link statically
76
+
77
+ If you needs to link the backend (OpenBLAS/Netlib) statically, please add following to your Cargo.toml
78
+
79
+ ``` toml
80
+ [dependencies ]
81
+ openblas-src = { version = " 0.7.0" , features = [" static" ] }
82
+ ```
83
+
84
+ Intel-MKL backend does not support static linking.
You can’t perform that action at this time.
0 commit comments