Open
Description
I have the following dependencies in Cargo.toml
lapack = "0.17.0"
lapack-src = { version="0.8.0", features=["openblas"]}
When I use functions from lapack
in my crate, I get linker errors (undefined symbols). This can be solved by adding extern crate lapack_src as _;
to my crate, but this behavior is a footgun, as debugging it requires understanding rust linkage model (and its interaction with cargo). As far as I understand it, the issue would be solved if an upstream crate would depend on lapack-src
itself.
Could this be done here ? Or would it be better to do it in lapack-sys
?
Metadata
Metadata
Assignees
Labels
No labels