diff options
-rwxr-xr-x | buildos | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -637,9 +637,11 @@ function toolchain_bootstrap () # <toolchain-name> # Bootstrap, stage, and install using the provided build.sh script. Do # parallel bootstrap using make. # - if ! ./build.sh --make "$cpu_total" \ - --install-dir "$id" \ - --trust "$tt" \ + if ! ./build.sh --make make \ + --make "-j$cpu_total" \ + --timeout "$timeout" \ + --install-dir "$id" \ + --trust "$tt" \ g++; then info "failed to build $(pwd)" break |