summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/orc/orc_0.4.40.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-09-25 14:48:56 +0800
committerSteve Sakoman <steve@sakoman.com>2024-11-11 09:16:26 -0800
commit3148ccf972fd5265c5cb14f559c822bbc900ac15 (patch)
treea866d04859d8cb69fb54e36f31c198ea3ca9f1ba /meta/recipes-devtools/orc/orc_0.4.40.bb
parent93ecdebf0ce25636d0e185829eec502182523af4 (diff)
downloadpoky-3148ccf972fd5265c5cb14f559c822bbc900ac15.tar.gz
orc: upgrade 0.4.39 -> 0.4.40
Changelog: =========== - Security: Minor follow-up fixes for CVE-2024-40897 - powerpc: fix div255w which still used the inexact substitution - x86: work around old GCC versions (pre 9.0) having broken xgetbv implementations - x86: consider MSYS2/Cygwin as Windows for ABI purposes only - x86: handle unnatural and misaligned array pointers - orccodemem: Assorted memory mapping fixes - Fix include header use from C++ - Some compatibility fixes for Musl - ppc: Disable VSX and ISA 2.07 for Apple targets - ppc: Allow detection of ppc64 in Mac OS - x86: Fix non-C11 typedefs - meson: Fix detecting XSAVE on older AppleClang - x86: try fixing AVX detection again by adding check for XSAVE - Check return values of malloc() and realloc() (From OE-Core rev: ad56908d308d6d51e2d0b3f258ea52cfe6bf0375) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ed7e4eb12491968c5f962b7e89d557c2c6d86a33) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/orc/orc_0.4.40.bb')
-rw-r--r--meta/recipes-devtools/orc/orc_0.4.40.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/orc/orc_0.4.40.bb b/meta/recipes-devtools/orc/orc_0.4.40.bb
new file mode 100644
index 0000000000..e437831cd7
--- /dev/null
+++ b/meta/recipes-devtools/orc/orc_0.4.40.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Optimised Inner Loop Runtime Compiler"
2HOMEPAGE = "http://gstreamer.freedesktop.org/modules/orc.html"
3DESCRIPTION = "Optimised Inner Loop Runtime Compiler is a Library and set of tools for compiling and executing SIMD assembly language-like programs that operate on arrays of data."
4LICENSE = "BSD-2-Clause & BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
6
7SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz"
8SRC_URI[sha256sum] = "3fc2bee78dfb7c41fd9605061fc69138db7df007eae2f669a1f56e8bacef74ab"
9
10inherit meson pkgconfig gtk-doc
11
12GTKDOC_MESON_OPTION = "gtk_doc"
13GTKDOC_MESON_ENABLE_FLAG = "enabled"
14GTKDOC_MESON_DISABLE_FLAG = "disabled"
15
16BBCLASSEXTEND = "native nativesdk"
17
18PACKAGES =+ "orc-examples"
19PACKAGES_DYNAMIC += "^liborc-.*"
20FILES:orc-examples = "${libdir}/orc/*"
21FILES:${PN} = "${bindir}/*"
22
23python populate_packages:prepend () {
24 libdir = d.expand('${libdir}')
25 do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True)
26}
27
28do_compile:prepend:class-native () {
29 sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c
30}