From 1f8b99db1c9779dec596c418d17bbc89a71add09 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 4 May 2018 08:18:17 -0700 Subject: ask ninja to limit concurrency if load avg is above 2 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 576312cabf..e50bf9b892 100644 --- a/Makefile +++ b/Makefile @@ -43,10 +43,10 @@ endif ifeq ($(V), 1) export XCPRETTY - NINJA_ARGS ?= -v + NINJA_ARGS ?= -v -l 2 else export XCPRETTY ?= | tee '$(shell pwd)/build/xcodebuild-$(shell date +"%Y-%m-%d_%H%M%S").log' | xcpretty - NINJA_ARGS ?= + NINJA_ARGS ?= -l 2 endif .PHONY: default -- cgit v1.2.1