added my Recipes
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 653c39b0b30b2a329db5041e558cfc97c03d6bfb Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 17 Feb 2021 19:18:16 -0800
|
||||
Subject: [PATCH] do not build examples
|
||||
|
||||
examples need ucontext and some architectures on musl do not have it
|
||||
implemented e.g. riscv
|
||||
|
||||
Upstream-Status: Inappropriate [Arch-Specific]
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Makefile | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 5d9c4dc..53e1615 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -11,7 +11,6 @@ default: all
|
||||
all:
|
||||
@$(MAKE) -C src
|
||||
@$(MAKE) -C test
|
||||
- @$(MAKE) -C examples
|
||||
|
||||
.PHONY: all install default clean test
|
||||
.PHONY: FORCE cscope
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
From 0fbcc44fe1fb2dc6807660b2cff1c2995add095b Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 18 Feb 2023 18:01:22 -0800
|
||||
Subject: [PATCH] examples,test: Remove unused linux/errqueue.h
|
||||
|
||||
This header is not needed therefore remove it, this cleanup also helps
|
||||
compiling on musl/clang
|
||||
|
||||
/usr/include/linux/errqueue.h:57:20: error: array has incomplete element typ
|
||||
e 'struct timespec'
|
||||
struct timespec ts[3];
|
||||
^
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/axboe/liburing/pull/798]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
examples/send-zerocopy.c | 1 -
|
||||
test/send-zerocopy.c | 1 -
|
||||
2 files changed, 2 deletions(-)
|
||||
|
||||
diff --git a/examples/send-zerocopy.c b/examples/send-zerocopy.c
|
||||
index 6092af9..cf1fa8b 100644
|
||||
--- a/examples/send-zerocopy.c
|
||||
+++ b/examples/send-zerocopy.c
|
||||
@@ -13,7 +13,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <arpa/inet.h>
|
||||
-#include <linux/errqueue.h>
|
||||
#include <linux/if_packet.h>
|
||||
#include <linux/ipv6.h>
|
||||
#include <linux/socket.h>
|
||||
diff --git a/test/send-zerocopy.c b/test/send-zerocopy.c
|
||||
index 86a31cd..5d578c6 100644
|
||||
--- a/test/send-zerocopy.c
|
||||
+++ b/test/send-zerocopy.c
|
||||
@@ -11,7 +11,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <arpa/inet.h>
|
||||
-#include <linux/errqueue.h>
|
||||
#include <linux/if_packet.h>
|
||||
#include <linux/ipv6.h>
|
||||
#include <linux/socket.h>
|
||||
--
|
||||
2.39.2
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
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 = "LGPL-2.1-only | MIT"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=41;endline=44;md5=2b0e9926530c269f5ae95560370195af"
|
||||
|
||||
SRC_URI = "git://github.com/axboe/liburing.git;branch=master;protocol=https \
|
||||
file://0001-examples-test-Remove-unused-linux-errqueue.h.patch"
|
||||
SRC_URI:append:libc-musl:riscv64 = " file://0001-do-not-build-examples.patch "
|
||||
SRC_URI:append:libc-musl:riscv32 = " file://0001-do-not-build-examples.patch "
|
||||
SRCREV = "f5cac78e621ab452d3035902085f66d2bf73243b"
|
||||
|
||||
PV .= "+2.4+git${SRCPV}"
|
||||
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_configure() {
|
||||
${S}/configure --prefix=${prefix} --libdir=${libdir} --libdevdir=${libdir} --mandir=${mandir} --datadir=${datadir} --includedir=${includedir}
|
||||
}
|
||||
do_install () {
|
||||
oe_runmake install DESTDIR=${D}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user