We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0369832 + 367e907 commit 612847bCopy full SHA for 612847b
src/bootstrap/native.rs
@@ -306,7 +306,7 @@ pub fn openssl(build: &Build, target: &str) {
306
println!("Configuring openssl for {}", target);
307
build.run_quiet(&mut configure);
308
println!("Building openssl for {}", target);
309
- build.run_quiet(Command::new("make").current_dir(&obj));
+ build.run_quiet(Command::new("make").arg("-j1").current_dir(&obj));
310
println!("Installing openssl for {}", target);
311
build.run_quiet(Command::new("make").arg("install").current_dir(&obj));
312
0 commit comments