From patchwork Tue Apr 2 08:04:26 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41909 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 25B48C6FD1F for ; Tue, 2 Apr 2024 08:04:39 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.7049.1712045069816765157 for ; Tue, 02 Apr 2024 01:04:30 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd76.aul.t-online.de (fwd76.aul.t-online.de [10.223.144.102]) by mailout03.t-online.de (Postfix) with SMTP id AE8113681A for ; Tue, 2 Apr 2024 10:04:12 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.154.174.110]) by fwd76.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rrZ7q-1XJe4H0; Tue, 2 Apr 2024 10:04:10 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH] highway: add recipe Date: Tue, 2 Apr 2024 10:04:26 +0200 Message-ID: <20240402080426.28248-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1712045050-E9C29D1B-01EAE84A/0/0 CLEAN NORMAL X-TOI-MSGID: a494e061-51a3-4fef-8cf5-5c1b4d3e40e1 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 ; Tue, 02 Apr 2024 08:04:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109777 add google highway as a dependency for libjxl Signed-off-by: Markus Volk --- meta-oe/recipes-extended/highway/highway.1.1.0.bb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 meta-oe/recipes-extended/highway/highway.1.1.0.bb diff --git a/meta-oe/recipes-extended/highway/highway.1.1.0.bb b/meta-oe/recipes-extended/highway/highway.1.1.0.bb new file mode 100644 index 000000000..ec9d8f742 --- /dev/null +++ b/meta-oe/recipes-extended/highway/highway.1.1.0.bb @@ -0,0 +1,15 @@ +SUMMARY = "Highway is a C++ library for SIMD (Single Instruction, Multiple Data)" +HOMEPAGE = "https://github.com/google/highway/" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9" + +inherit cmake + +SRC_URI = "git://github.com/google/highway.git;protocol=https;branch=master" + +SRCREV = "58b52a717469e62b2d9b8eaa2f5dddb44d4a4cbf" +S = "${WORKDIR}/git" + +EXTRA_OECMAKE = "-DBUILD_TESTING=0 -DCMAKE_BUILD_TYPE=Release" +CXXFLAGS:append:arm = " -mfp16-format=ieee"