From ca216485362c9edd6c7bc8d9e30b9c99e1da6560 Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Wed, 25 Jul 2018 14:53:13 +0530 Subject: [PATCH] autoserve: use 8 concurrent builds --- scripts/autoserve | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/autoserve b/scripts/autoserve index acd036d..1823bfc 100755 --- a/scripts/autoserve +++ b/scripts/autoserve @@ -10,7 +10,7 @@ ctrl_c() { } binary_pid= -if make; then +if make -j8; then source devel.env cd build/devel ./$binary_name & @@ -50,7 +50,7 @@ while true; do wait $binary_pid fi - if make; then + if make -j8; then source devel.env cd build/devel ./$binary_name &