mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 12:13:02 +01:00
Changelog:
===========
Thread-safety improvements around orc codemem allocation/freeing
Add orc_parse_code() with more detailed error reporting
Implement Orc function lazy initialization correctly via atomic operations
orc program parser fixes and improvements
build fixes and compiler warning fixes
coverity and clang scan-build static code analysis fixes
meson: Do not always generate static library for test library
ci improvements
(From OE-Core rev: 0f65b68b90c2b71386f30ed8753928967dce871e)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
SUMMARY = "Optimised Inner Loop Runtime Compiler"
|
|
HOMEPAGE = "http://gstreamer.freedesktop.org/modules/orc.html"
|
|
DESCRIPTION = "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."
|
|
LICENSE = "BSD-2-Clause & BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
|
|
|
|
SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz"
|
|
SRC_URI[sha256sum] = "8f47abb3f097171e44eb807adcdabd860fba2effd37d8d3c4fbd5f341cadd41f"
|
|
|
|
inherit meson pkgconfig gtk-doc
|
|
|
|
GTKDOC_MESON_OPTION = "gtk_doc"
|
|
GTKDOC_MESON_ENABLE_FLAG = "enabled"
|
|
GTKDOC_MESON_DISABLE_FLAG = "disabled"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
PACKAGES =+ "orc-examples"
|
|
PACKAGES_DYNAMIC += "^liborc-.*"
|
|
FILES:orc-examples = "${libdir}/orc/*"
|
|
FILES:${PN} = "${bindir}/*"
|
|
|
|
python populate_packages:prepend () {
|
|
libdir = d.expand('${libdir}')
|
|
do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True)
|
|
}
|
|
|
|
do_compile:prepend:class-native () {
|
|
sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c
|
|
}
|