From: Michael Tremer Date: Sat, 7 Feb 2015 22:22:08 +0000 (+0000) Subject: cmake: Limit build to two concurrent compiler processes X-Git-Tag: v2.17-core89~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a697701c27deeee20989529ee59aa4811d23ef1;p=people%2Fpmueller%2Fipfire-2.x.git cmake: Limit build to two concurrent compiler processes Overheats my system :( --- diff --git a/lfs/cmake b/lfs/cmake index 587396538d..085d2bf238 100644 --- a/lfs/cmake +++ b/lfs/cmake @@ -32,6 +32,10 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +ifeq "$(MACHINE)" "armv5tel" + MAKETUNING = -j2 +endif + ############################################################################### # Top-level Rules ###############################################################################