mirror of
https://git.yoctoproject.org/poky
synced 2026-07-09 13:37:24 +00:00
e80c4a6d08
Changelog for libatomic-ops: 7.8.2 -> 7.8.4 ============================================================ == [7.8.4] 2025-09-05 == * Document Win32-specific AO_NO_ASM_XADD macro in README * Eliminate 'atomic_thread_fence is unsupported with tsan' gcc-11 warning * Eliminate 'munmap argument 1 from incompatible pointer type' gcc warning * Eliminate 'uninitialized memory use' gcc-13 warning in test_atomic * Fix all broken URLs in comments * Fix atomic_ops_sysdeps.S compilation for SunPro compiler in CMake script * Update URLs after repository transfer to bdwgc organization * Update CMake minimum required version to 3.10 (From OE-Core rev: 189ecdff01a9c2c47b809d153b04ea6080f74e4f) Signed-off-by: Daniel Turull <daniel.turull@ericsson.com> (cherry picked from commit 02d66279071cbd043474dc44f44d348ec3228583) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
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/bdwgc/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/bdwgc/libatomic_ops/releases"
|
|
|
|
SRC_URI[sha256sum] = "2356e002e80ef695875e971d6a4fd8c61ca5c6fa4fd1bf31cce54a269c8bfcd5"
|
|
|
|
S = "${WORKDIR}/libatomic_ops-${PV}"
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
inherit autotools pkgconfig github-releases
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|