From patchwork Fri Feb 4 16:47:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5066 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 "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4Jr1gq3LsKz3xHT for ; Fri, 4 Feb 2022 16:48:23 +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 "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Jr1gP0tTSz5Qy; Fri, 4 Feb 2022 16:48:01 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Jr1gM6MX7z32MK; Fri, 4 Feb 2022 16:47:59 +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 "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Jr1gK3cRnz2xGC for ; Fri, 4 Feb 2022 16:47:57 +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) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4Jr1gK2gClz4jj; Fri, 4 Feb 2022 16:47:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1643993277; 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=Adbx9svzBxtS0dgN44e18KUFlFr+4rwsEqnrsD5/AOU=; b=xiZznUbG5CoNhGFXUVs/NyYStOGCgaxEnaVdeDxbuwGpxVOBMB0Wp6+f+3z4PEZ+kr+C6/ l/QbGg7qvgDG0fBA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1643993277; 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=Adbx9svzBxtS0dgN44e18KUFlFr+4rwsEqnrsD5/AOU=; b=W/2y7po7oLwdPzA3hlJcLWl3z3tzIHFhgqcgQOi5qHO2KoO34MXEmxXdusyjz88dqxIgpG lgq+PL35SYxthiInOdyXOWk0Kw5LJIZsNIA9u49X/B2nbYKGEGrxB+Er5SU/NPm6K3p233 7Cok/4veQWtzvtgLUdjAM/ec1VX5bkimi+AXhxKnPBAUwcI9Mwn/Ydgje4v1nGIxuM3924 75VhgFWMEvGbmxM8IVtVS9h4ZZsTWEzYBMOATwqL3Fld56YP3GDpXTMX9x1QSXraBzZ5hx tNk+HadLd/JNCTmGa9hCBP4cYEw/HXiWa06lygJp+mgmhp+WG2vx8Yp+jHIPVA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 13/28] make.sh: Bump toolchain version Date: Fri, 4 Feb 2022 16:47:33 +0000 Message-Id: <20220204164748.315559-13-michael.tremer@ipfire.org> In-Reply-To: <20220204164748.315559-1-michael.tremer@ipfire.org> References: <20220204164748.315559-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" Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index dfa1bafde..57e185312 100755 --- a/make.sh +++ b/make.sh @@ -38,7 +38,7 @@ GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)" # Git Branch GIT_TAG="$(git tag | tail -1)" # Git Tag GIT_LASTCOMMIT="$(git rev-parse --verify HEAD)" # Last commit -TOOLCHAINVER=20210701 +TOOLCHAINVER=20210805 # use multicore and max compression ZSTD_OPT="-T0 --ultra -22"