On Tue, Apr 2, 2024 at 1:04 AM Markus Volk <[email protected]> wrote: > > add google highway as a dependency for libjxl > > Signed-off-by: Markus Volk <[email protected]> > --- > 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"
This is a gcc specific option and not supported by clang, however clang defaults to ieee format for __fp16 so this works without specifying this option in case of clang. > -- > 2.44.0 > > > >
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#109788): https://lists.openembedded.org/g/openembedded-devel/message/109788 Mute This Topic: https://lists.openembedded.org/mt/105283871/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
