From patchwork Wed Sep 27 10:49:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Nyekjaer X-Patchwork-Id: 31245 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 64B2BE810CA for ; Wed, 27 Sep 2023 10:49: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.14605.1695811782134635996 for ; Wed, 27 Sep 2023 03:49:44 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@geanix.com header.s=default2211 header.b=cywLrhSI; 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=54a8ZMX/FvOEITWmFw6Z9Hyb/cgjYvYW1aWasNNz03Y=; b=cywLrhSIAzsmRKUc/iZbOUfQdn PrC8BI4Qz9ivwKLx+9Xar5SSdyq1u3rRPwLXdkk7QM7qpdmkbGYsbaultA/8UsBxaFeEn5QAlEVkw sXFVoC9ylMeTexEM4cDAMLw4u33CEnLiU+6+WUODOYhZRlf/0O0cQrTxUK4w7nYEB5xtWuUMNNbth uLzNOK8RrnvzdpZv93r6EkdRwE79Ur+niUPLGR3GS/VSq4mYQFF9KlPY5hrSE/Lw9XMXwrJ4HTWC+ kpqxCEQx9LgndwAKjKsPfdK4qbOitJFkAUOqYcbBkveashwoq7jsFaPnRRIZSr2Q/aolRPF4w2zoj FFvir1WQ==; Received: from sslproxy01.your-server.de ([78.46.139.224]) by www530.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qlS6t-0005Ex-4k; Wed, 27 Sep 2023 12:49:39 +0200 Received: from [185.17.218.86] (helo=zen..) by sslproxy01.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qlS6s-000W89-T3; Wed, 27 Sep 2023 12:49:38 +0200 From: Sean Nyekjaer To: openembedded-core@lists.openembedded.org Cc: Sean Nyekjaer , kasper@krinvent.dk Subject: [OE-core][PATCH] gcc: depend on zstd Date: Wed, 27 Sep 2023 12:49:20 +0200 Message-ID: <20230927104922.3734608-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 ; Wed, 27 Sep 2023 10:49:50 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/188302 Add zstd LTO support for the nativesdk compiler. --- % 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-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"