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.
1 parent ea58909 commit 0c500f7Copy full SHA for 0c500f7
openblas-build/src/build.rs
@@ -460,7 +460,7 @@ impl Configure {
460
.stdout(out)
461
.stderr(err)
462
.args(&self.make_args())
463
- .args(["libs", "netlib", "shared"])
+ .args(["all"])
464
.env_remove("TARGET")
465
.check_call()
466
{
openblas-src/build.rs
@@ -202,7 +202,7 @@ fn build() {
202
203
let output = PathBuf::from(env::var("OUT_DIR").unwrap().replace(r"\", "/"));
204
let mut make = Command::new("make");
205
- make.args(&["libs", "netlib", "shared"])
+ make.args(&["all"])
206
.arg(format!("BINARY={}", binary()))
207
.arg(format!(
208
"{}_CBLAS=1",
0 commit comments