mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
liburing: add v0.7
Add initial support for liburing v0.7. Fix build with musl by linking and depending on libucontext Signed-off-by: Richard Leitner <richard.leitner@skidata.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
9efe7a412d
commit
4c7f8a0997
@@ -0,0 +1,24 @@
|
||||
SUMMARY = "This is the io_uring library, liburing."
|
||||
DESCRIPTION = "liburing provides helpers to setup and teardown io_uring \
|
||||
instances, and also a simplified interface for applications that don't need \
|
||||
(or want) to deal with the full kernel side implementation."
|
||||
HOMEPAGE = "https://github.com/axboe/liburing"
|
||||
BUGTRACKER = "https://github.com/axboe/liburing/issues"
|
||||
SECTION = "libs"
|
||||
|
||||
LICENSE = "LGPLv2.1 | MIT"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=41;endline=44;md5=d51b5805e2a675685e6a66ca50904cf9"
|
||||
|
||||
SRC_URI = "git://github.com/axboe/liburing.git;branch=master;protocol=https"
|
||||
SRCREV = "45f0735219a615ae848033c47c7e2d85d101d43e"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
DEPENDS_append_libc-musl = " libucontext"
|
||||
XCFLAGS = "-pthread"
|
||||
XCFLAGS_append_libc-musl = " -lucontext"
|
||||
|
||||
EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'LDFLAGS=${LDFLAGS}' 'XCFLAGS=${XCFLAGS}' 'BUILDDIR=${S}'"
|
||||
|
||||
do_install () {
|
||||
oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir}
|
||||
}
|
||||
Reference in New Issue
Block a user