This is an automated email from the git hooks/post-receive script.
yvan.roux pushed a commit to branch ryanarn/reduced_parallel in repository toolchain/abe.
The following commit(s) were added to refs/heads/ryanarn/reduced_parallel by this push: new a2f1983 Re-enable -j #cpu for native builds. a2f1983 is described below
commit a2f1983ccb8492e9377e1dd3497909d430e0365a Author: Yvan Roux yvan.roux@linaro.org Date: Wed Aug 19 11:14:24 2015 +0200
Re-enable -j #cpu for native builds.
Change-Id: Ia6dbd750870ba31ff7860894cb8281ebb439db6c --- lib/make.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/make.sh b/lib/make.sh index 67a4198..ae255cb 100755 --- a/lib/make.sh +++ b/lib/make.sh @@ -737,10 +737,10 @@ make_check() if test x"${parallel}" = x"yes"; then local make_flags case "${target}" in - "$build"|*"-elf"*) make_flags="${make_flags} -j 1" ;; + "$build"|*"-elf"*) make_flags="${make_flags} -j ${cpus}" ;; # Try to find out which test is crashing the aarch64-linux-gnu # boards and x86_64 builders. - aarch64-linux-gnu|x86_64*) make_flags="${make_flags} -j 1" ;; + aarch64-linux-gnu) make_flags="${make_flags} -j 1" ;; # Double parallelization when running tests on remote boards # to avoid host idling when waiting for the board. *) make_flags="${make_flags} -j $((2*${cpus}))" ;;