We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cbd91 commit 0c1e4f6Copy full SHA for 0c1e4f6
1 file changed
README.md
@@ -60,7 +60,7 @@ You should link a LAPACKE implementation to a final crate (like binary executabl
60
[dependencies]
61
ndarray = "0.12"
62
ndarray-linalg = "0.10"
63
-openblas-src = "0.5" # or another backend of your choice
+openblas-src = "0.7" # or another backend of your choice
64
65
```
66
@@ -71,3 +71,14 @@ extern crate ndarray;
71
extern crate ndarray_linalg;
72
extern crate openblas_src; // or another backend of your choice
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.
0 commit comments