From 87b0a4903c0a732dcd7b78fef4ed20e5323a3cc1 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Thu, 1 Sep 2022 16:22:42 -0600 Subject: [PATCH] scripts: Build crossgcc with multiple cores Signed-off-by: Tim Crawford --- scripts/deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deps.sh b/scripts/deps.sh index 9d49e2c..6a395a9 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -122,8 +122,8 @@ popd msg "Building coreboot toolchains" pushd coreboot -make crossgcc-i386 -make crossgcc-x64 +make CPUS="$(nproc)" crossgcc-i386 +make CPUS="$(nproc)" crossgcc-x64 popd if [[ $RUSTUP_NEW_INSTALL = 1 ]]; then