mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
* Add RISC-V support * Convert atomic_ops_malloc.c and tests to valid C++ code * Eliminate 'function is never used' cppcheck warning for * load_before_cas * Eliminate 'using argument that points at uninitialized var' cppcheck * error * Fix 'AO_pt_lock undefined' error if cross-compiling manually (MinGW) * Fix public headers inclusion from clients C++ code * Remove gcc/nios2.h file (include gcc/generic.h directly for nios2) * Support MIPS rel6 (From OE-Core rev: 053a61ef23981e23c9ab25b7900787a842f304c3) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
626 B
BlitzBasic
22 lines
626 B
BlitzBasic
SUMMARY = "A library for atomic integer operations"
|
|
HOMEPAGE = "https://github.com/ivmai/libatomic_ops/"
|
|
SECTION = "optional"
|
|
PROVIDES += "libatomics-ops"
|
|
LICENSE = "GPLv2 & MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://doc/LICENSING.txt;md5=e00dd5c8ac03a14c5ae5225a4525fa2d \
|
|
"
|
|
PV .= "+git${SRCPV}"
|
|
SRCBRANCH ?= "release-7_6"
|
|
|
|
SRCREV = "8d98e2811c2f6df99cc65e5cc6964047d8554ace"
|
|
SRC_URI = "git://github.com/ivmai/libatomic_ops;branch=${SRCBRANCH}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|