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
6060[dependencies ]
6161ndarray = " 0.12"
6262ndarray-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
6464
6565```
6666
@@ -71,3 +71,14 @@ extern crate ndarray;
7171extern crate ndarray_linalg;
7272extern crate openblas_src; // or another backend of your choice
7373```
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