[Buildroot] [PATCH] package/liburing: Configure liburing with --use-libc
Charlie Jenkins
charlie at rivosinc.com
Tue Apr 1 01:13:16 UTC 2025
liburing requires libc when building for any architecture that doesn't
have built-in syscall support (that is currently any architecture other
than x86 and aarch64). Configure liburing with --use-libc to allow these
other architectures to compile.
Signed-off-by: Charlie Jenkins <charlie at rivosinc.com>
Fixes: 70e3b5a800f8 ("package/liburing: bump to version 2.5")
---
package/liburing/liburing.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/liburing/liburing.mk b/package/liburing/liburing.mk
index fc3993b38cdd32f589a47c16d6963e87c175a7f8..0bdcc79ee85167788c03ecfc4545777c49d37ac9 100644
--- a/package/liburing/liburing.mk
+++ b/package/liburing/liburing.mk
@@ -22,7 +22,7 @@ LIBURING_MAKE_OPTS += ENABLE_SHARED=1
endif
define LIBURING_CONFIGURE_CMDS
- (cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure)
+ (cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure --use-libc)
endef
define LIBURING_BUILD_CMDS
---
base-commit: 696703dc5ae7c2a5fa637c76190665791869692a
change-id: 20250331-fix_liburing_arch-046088894564
--
- Charlie
More information about the buildroot
mailing list