error: could not find native static library `openblas`, perhaps an -L flag is missing?
rust-ndarray/ndarray-linalg#253
openblas-src 0.10.0 does not work with static flag when using as dependencies. It works if using path, e.g.
[dependencies.openblas-src]
version = "0.10.0"
path = "/path/to/my/local/repo"
optional = true
default-features = false
features = ["cblas"]