From patchwork Thu Sep 28 05:29:03 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Nyekjaer X-Patchwork-Id: 31299 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 6F7F8CE7AFA for ; Thu, 28 Sep 2023 05:29:31 +0000 (UTC) Received: from www530.your-server.de (www530.your-server.de [188.40.30.78]) by mx.groups.io with SMTP id smtpd.web10.7898.1695878965670344097 for ; Wed, 27 Sep 2023 22:29:27 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@geanix.com header.s=default2211 header.b=cgzqD/f6; 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=faONcXQNF8bXVKpJ0CuZXgPVjIhi7Rk8PsDVQ42G15Q=; b=cgzqD/f6YfjUyCvjIXyZBGYbfu XCDQc7HSWz+TwQ+3Xje7Ah51EmvWK41/JSCsxwebv+haWn04qjj/w52NFLCDiaWyGawfoZQ/t157l A0+AeV1YEncVUsyl8yU6+sjYDfScAnwUMe5/PjCODJxOeeQx2n9n5h6Es0aMI9JTJpAznjpu6emfj LCS5cqJkXgJM8p+Rb1e+B2feKV1THZzqR8w8Shssy2No7fiaR/GnKMfOXY8neACnrdZmXpb79glsY ZHoK77i8vWaqx4v3XI7V0hwhr60Hz+vzaFOBsAf8sAfWOVh1y2c0r17Y6twDV5qZYEqlSRHF6OZ0r 6Osv7jMA==; Received: from sslproxy06.your-server.de ([78.46.172.3]) by www530.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qljaS-0008iE-Sx; Thu, 28 Sep 2023 07:29:20 +0200 Received: from [185.17.218.86] (helo=zen..) by sslproxy06.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qljaS-000LrZ-Jq; Thu, 28 Sep 2023 07:29:20 +0200 From: Sean Nyekjaer To: openembedded-core@lists.openembedded.org Cc: peter.kjellerstedt@axis.com, Sean Nyekjaer , kasper@krinvent.dk Subject: [OE-core][PATCH v3] gcc: depend on zstd Date: Thu, 28 Sep 2023 07:29:03 +0200 Message-ID: <20230928052906.180974-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/27044/Wed Sep 27 09:43:59 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 ; Thu, 28 Sep 2023 05:29:31 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/188368 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 --- Changes since v2: - removed git syntax from commit msg meta/recipes-devtools/gcc/gcc-13.2.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/gcc/gcc-13.2.inc b/meta/recipes-devtools/gcc/gcc-13.2.inc index d96f3171e4..359db1e278 100644 --- a/meta/recipes-devtools/gcc/gcc-13.2.inc +++ b/meta/recipes-devtools/gcc/gcc-13.2.inc @@ -10,7 +10,7 @@ BINV = "13.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"