From patchwork Mon Oct 2 11:35:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Nyekjaer X-Patchwork-Id: 31562 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF6AEE7849A for ; Mon, 2 Oct 2023 11:35:50 +0000 (UTC) Received: from www530.your-server.de (www530.your-server.de [188.40.30.78]) by mx.groups.io with SMTP id smtpd.web11.79222.1696246543969719865 for ; Mon, 02 Oct 2023 04:35:45 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@geanix.com header.s=default2211 header.b=N+ZEvFSz; spf=pass (domain: geanix.com, ip: 188.40.30.78, mailfrom: sean@geanix.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=geanix.com; s=default2211; h=Content-Transfer-Encoding:MIME-Version:Message-ID:Date: Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References; bh=pxhpMAehXmCsi77b1mqrXer2jhDz99oNZTIguAZa71I=; b=N+ZEvFSzk4gnws/n2zE7zf958v 7ZVHTdj/y95G0bDmT3Lmcw3xRcsYorUkFh7MobVxhyI3xI7LK7EiXLYSc4QKAUgmhqsBWHNRMGwAI sJSMCzsYGTzfgkTtL37vm15DniH0LjNBFPX2fnTBKdPoKctaMqrGYu1lTCkzEIcd/kFLQrvyQ1SJv 98h4/ltLxnaApjWR9eHckvYCEhhs3+p4JBm3TDFirTmYx71iFRVibNLcaB+my3TNfxLmkN9y8C+Fj 9GcSpGduP8HIzi4jb8ZspK+02rcauBHvgD4oC5Db3jcUUEK30UrdP7YKjH0yg0gr669ZhkpxIGL3L I74Jc+9g==; Received: from sslproxy03.your-server.de ([88.198.220.132]) by www530.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qnHDB-000Cu9-Et; Mon, 02 Oct 2023 13:35:41 +0200 Received: from [185.17.218.86] (helo=zen..) by sslproxy03.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qnHDB-00035W-7W; Mon, 02 Oct 2023 13:35:41 +0200 From: Sean Nyekjaer To: openembedded-core@lists.openembedded.org Cc: Sean Nyekjaer , kasper@krinvent.dk Subject: [OE-core][mickledore][PATCH] gcc: depend on zstd Date: Mon, 2 Oct 2023 13:35:06 +0200 Message-ID: <20231002113507.935821-1-sean@geanix.com> X-Mailer: git-send-email 2.42.0 MIME-Version: 1.0 X-Authenticated-Sender: sean@geanix.com X-Virus-Scanned: Clear (ClamAV 0.103.10/27049/Mon Oct 2 09:37:00 2023) List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 02 Oct 2023 11:35:50 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/188602 Add zstd LTO support for target and nativesdk compiler. This also brings gcc into sync with gcc-cross. % x86_64-oe-linux-gcc -v [...] Supported LTO compression algorithms: zlib zstd gcc version 12.2.0 (GCC) % x86_64-oesdk-linux-gcc -v [...] Supported LTO compression algorithms: zlib gcc version 12.2.0 (GCC) Signed-off-by: Sean Nyekjaer --- meta/recipes-devtools/gcc/gcc-12.2.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/gcc/gcc-12.2.inc b/meta/recipes-devtools/gcc/gcc-12.2.inc index 0dbbecad4a..5ff40a3b7f 100644 --- a/meta/recipes-devtools/gcc/gcc-12.2.inc +++ b/meta/recipes-devtools/gcc/gcc-12.2.inc @@ -10,7 +10,7 @@ BINV = "12.2.0" FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc:${FILE_DIRNAME}/gcc/backport:" -DEPENDS =+ "mpfr gmp libmpc zlib flex-native" +DEPENDS =+ "mpfr gmp libmpc zlib zstd flex-native" NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native zstd-native" LICENSE = "GPL-3.0-with-GCC-exception & GPL-3.0-only"