Skip to content

Commit 367e907

Browse files
committed
Make sure openssl compiles with only one core
Fixes #40417
1 parent 0369832 commit 367e907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/native.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ pub fn openssl(build: &Build, target: &str) {
306306
println!("Configuring openssl for {}", target);
307307
build.run_quiet(&mut configure);
308308
println!("Building openssl for {}", target);
309-
build.run_quiet(Command::new("make").current_dir(&obj));
309+
build.run_quiet(Command::new("make").arg("-j1").current_dir(&obj));
310310
println!("Installing openssl for {}", target);
311311
build.run_quiet(Command::new("make").arg("install").current_dir(&obj));
312312

0 commit comments

Comments
 (0)