1 2 3 4 5 6 7 8 9 10
/// /// This build script emits the openblas linking directive if requested /// fn main() { if cfg!(feature = "blas-openblas-sys") { println!("cargo:rustc-link-lib={}=openblas", "dylib"); } }