mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 10:29:40 +01:00
Changelog: ========= * Eliminate 'atomic_thread_fence is unsupported with tsan' gcc-11 warning * Eliminate 'comparing signed/unsigned values' lcc warning in add_chunk_as * Fix 'undefined reference to AO_pt_lock' if configure is using clang-16 * Fix 'undefined reference to __atomic_load/store/cas_16' Mingw64-gcc error * Fix 'undefined reference' linker errors if shared build on OpenBSD (CMake) * Fix get_chunk for case of mmap area is located before AO_initial_heap * Fix typo in AO_HAVE_compare_and_swap_double name in atomic_ops_stack.h * Fix typo in comment of run_one_test of test_stack * Fix typos in comments of atomic_ops_malloc.c and atomic_ops_stack.c/h * Update cmake minimum required version to 3.5 (From OE-Core rev: 1dea52da8cd00e6619890b8c4dcece8b5ff83f74) 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>
23 lines
869 B
BlitzBasic
23 lines
869 B
BlitzBasic
SUMMARY = "A library for atomic integer operations"
|
|
DESCRIPTION = "Package provides semi-portable access to hardware-provided atomic memory update operations on a number of architectures."
|
|
HOMEPAGE = "https://github.com/ivmai/libatomic_ops/"
|
|
SECTION = "optional"
|
|
PROVIDES += "libatomics-ops"
|
|
LICENSE = "GPL-2.0-only & MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://LICENSE;md5=5700d28353dfa2f191ca9b1bd707865e \
|
|
"
|
|
|
|
SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/libatomic_ops-${PV}.tar.gz"
|
|
GITHUB_BASE_URI = "https://github.com/ivmai/libatomic_ops/releases"
|
|
|
|
SRC_URI[sha256sum] = "d305207fe207f2b3fb5cb4c019da12b44ce3fcbc593dfd5080d867b1a2419b51"
|
|
|
|
S = "${WORKDIR}/libatomic_ops-${PV}"
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
inherit autotools pkgconfig github-releases
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|