From patchwork Sun Aug 16 10:29:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3358 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4BTtm24zCgz3x0m for ; Sun, 16 Aug 2020 10:32:34 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4BTtjx381Mz11J; Sun, 16 Aug 2020 10:30:45 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BTtjx2VfYz2xnn; Sun, 16 Aug 2020 10:30:45 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4BTtjw2c4Wz2y3k for ; Sun, 16 Aug 2020 10:30:44 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 4BTtjq2Z5sz105; Sun, 16 Aug 2020 10:30:39 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1597573839; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=W68Qbl31dCbuXplhSDRX1+fXRgdELG7jJ+P2lrQm8RU=; b=Awwb58XWSRE1RZgYq2R7dK2yQLW7ee0+hwJWztsYRfgsCacebtWP3tQOGnwtT7rtNfM/Ei w6Bv1BCGZQMfabAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1597573840; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=W68Qbl31dCbuXplhSDRX1+fXRgdELG7jJ+P2lrQm8RU=; b=KCaz5N/Gy+ZUtcjNn0/kcNv6XajTKyEY34uSj7h88hU7vEfKSXsCgJbJhaGvrFwlmeC5zI tVam+9+Gwsq0dJ3cJPCuBLKe4biAhB/dFoARXgVnX4/7m7nz7d9N/CqPJb3ug1AaYCK0VH CXPlaIu36dQvAvZSKi+V3u4aXFYUhqTcO+tYygdCV4GoYzswaFE1xEVoBpUiuIMlWqH1VH 1PP2ElBnt2wdP38D01cZ4uU2iIMAvt79IIE19WcihkEtUv6wq48nMKsAIaULh3uydEwn6f 7bEtT2PLSuqyqTtPMw7SkisOdtQq2fqTwjJtsMP1S/u4rcQ50hxdS+V4CjE/4Q== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 52/62] cmake: Do not limit compile processes to only two Date: Sun, 16 Aug 2020 10:29:43 +0000 Message-Id: <20200816102953.3881-52-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> References: <20200816102953.3881-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" We can launch more when we have the memory for it Signed-off-by: Michael Tremer --- lfs/cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/cmake b/lfs/cmake index 5ad5ebb70..5b98644db 100644 --- a/lfs/cmake +++ b/lfs/cmake @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) -MAKETUNING = -j2 +MAX_PARALLELISM = $(shell echo $$(( $(SYSTEM_MEMORY) / 512))) ############################################################################### # Top-level Rules