We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 987f9a8 + 4f41bae commit 96957f8Copy full SHA for 96957f8
openblas-src/build.rs
@@ -149,6 +149,7 @@ fn build() {
149
let source = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("source");
150
let deliv = cfg.build(&source, &output).unwrap();
151
152
+ println!("cargo:rustc-link-search={}", output.display());
153
for search_path in &deliv.make_conf.c_extra_libs.search_paths {
154
println!("cargo:rustc-link-search={}", search_path.display());
155
}
@@ -161,7 +162,6 @@ fn build() {
161
162
for lib in &deliv.make_conf.f_extra_libs.libs {
163
println!("cargo:rustc-link-lib={}", lib);
164
- println!("cargo:rustc-link-search={}", output.display());
165
166
167
/// openblas-src 0.9.0 compatible `make` runner
0 commit comments