kumquat-buildroot/package/liburing/Config.in
Fabrice Fontaine 03ca6f4e39 package/liburing: new package
This is the io_uring library, liburing. 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.

https://git.kernel.dk/cgit/liburing

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-01-07 20:07:26 +01:00

16 lines
599 B
Plaintext

config BR2_PACKAGE_LIBURING
bool "liburing"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
help
This is the io_uring library, liburing. 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.
https://git.kernel.dk/cgit/liburing
comment "liburing needs a toolchain w/ gcc >= 4.9, headers >= 5.1"
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1