Skip to content

Commit

Permalink
Fix parallel build issue for OpenBLAS
Browse files Browse the repository at this point in the history
  • Loading branch information
gkobeaga committed Dec 13, 2023
1 parent ea58909 commit 0c500f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openblas-build/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl Configure {
.stdout(out)
.stderr(err)
.args(&self.make_args())
.args(["libs", "netlib", "shared"])
.args(["all"])
.env_remove("TARGET")
.check_call()
{
Expand Down
2 changes: 1 addition & 1 deletion openblas-src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ fn build() {

let output = PathBuf::from(env::var("OUT_DIR").unwrap().replace(r"\", "/"));
let mut make = Command::new("make");
make.args(&["libs", "netlib", "shared"])
make.args(&["all"])
.arg(format!("BINARY={}", binary()))
.arg(format!(
"{}_CBLAS=1",
Expand Down

0 comments on commit 0c500f7

Please sign in to comment.