From 32bc76124510fd4389285329670d94540e0099ca Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sun, 3 Feb 2019 09:09:50 +0100 Subject: [PATCH] iteropts.sh: -j 4 is sufficient --- contrib/ports/unix/example_app/iteropts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ports/unix/example_app/iteropts.sh b/contrib/ports/unix/example_app/iteropts.sh index c844c73c..d828e363 100755 --- a/contrib/ports/unix/example_app/iteropts.sh +++ b/contrib/ports/unix/example_app/iteropts.sh @@ -17,7 +17,7 @@ do rm $EXAPPDIR/lwipopts_test.h # cat the file to update its timestamp cat $f > $EXAPPDIR/lwipopts_test.h - make TESTFLAGS="-DLWIP_OPTTEST_FILE -Wno-documentation" -j 8 1> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG) + make TESTFLAGS="-DLWIP_OPTTEST_FILE -Wno-documentation" -j 4 1> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG) echo test $f done >> $LOGFILE done echo done, cleaning