diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-09 00:48:24 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-09 00:48:24 +0200 |
commit | 4fa378c54cb9984e8186e72073fa1b048dddef85 (patch) | |
tree | 2010567ccc1a9cce1de12585b2d354b6321c5049 /bin | |
parent | 8d5b8ee1361abbe86655e0d2e35e7b008312db99 (diff) | |
download | jenkins.debian.net-4fa378c54cb9984e8186e72073fa1b048dddef85.tar.xz |
reproducible coreboot: test whether the cross toolchain can be build in parallel now
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 8440ea4e..f238fefe 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -86,6 +86,7 @@ cd coreboot git submodule update --init --checkout 3rdparty/blobs COREBOOT="$(git log -1)" COREBOOT_VERSION=$(git describe) +NUM_CPU=$(cat /proc/cpuinfo |grep '^processor'|wc -l) echo "=============================================================================" echo "$(date -u) - Building cross compilers for ${ARCHS} now." @@ -95,7 +96,7 @@ GOT_XTOOLCHAIN=false set +e for ARCH in ${ARCHS} ; do echo "$(date -u) - Building cross compiler for ${ARCH}." - nice ionice -c 3 make crossgcc-$ARCH + nice ionice -c 3 make -j $NUM_CPU crossgcc-$ARCH RESULT=$? if [ $RESULT -eq 0 ] ; then GOT_XTOOLCHAIN=true @@ -113,7 +114,6 @@ export TZ="/usr/share/zoneinfo/Etc/GMT+12" # prevent failing using more than one CPU sed -i 's#MAKE=$i#MAKE=make#' util/abuild/abuild # use all cores for first build -NUM_CPU=$(cat /proc/cpuinfo |grep '^processor'|wc -l) sed -i "s#cpus=1#cpus=$NUM_CPU#" util/abuild/abuild sed -i 's#USE_XARGS=1#USE_XARGS=0#g' util/abuild/abuild # actually build everything |