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