[Buildroot] [git commit] package/qemu: disable vhost-user with uclibc-ng
From: Yann E. MORIN <hidden>
Date: 2021-08-07 08:24:46
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=5a9168edd446b9396080cf70d4b64f3717288837 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Disable vhost-user on uclibc-ng as it raises build failures since bump to version 6.0.0 in commit 6b86c9335fc3ff381878156c6243454d4b688df9 and https://github.com/qemu/qemu/commit/810033be083040591fee2fc09f2f294670ed1930 The issue is that F_ADD_SEALS and F_SEAL_xxx variables are not defined on uclibc-ng (even if MFD_ALLOW_SEALING is defined) resulting in the following build failure: ../subprojects/libvhost-user/libvhost-user.c:1637:22: error: 'F_ADD_SEALS' undeclared (first use in this function) 1637 | ret = fcntl(*fd, F_ADD_SEALS, flags); | ^~~~~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/9f393539931b51191cf7128e5c618c2398fc86c1 Signed-off-by: Fabrice Fontaine <redacted> [yann.morin.1998@free.fr: use conditional block like for all other OPTS] Signed-off-by: Yann E. MORIN <redacted> --- package/qemu/qemu.mk | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 470c285f16..50ace104ce 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk@@ -56,6 +56,12 @@ endif endif +ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) +QEMU_OPTS += --disable-vhost-user +else +QEMU_OPTS += --enable-vhost-user +endif + ifeq ($(BR2_PACKAGE_QEMU_SLIRP),y) QEMU_OPTS += --enable-slirp=system QEMU_DEPENDENCIES += slirp
_______________________________________________ buildroot mailing list buildroot@busybox.net http://lists.busybox.net/mailman/listinfo/buildroot