Le 05/06/2018 à 14:33, Peter Maydell a écrit : > On 5 June 2018 at 13:23, Laurent Vivier <laur...@vivier.eu> wrote: >> They are used by tests/qemu-iotests/socket_scm_helper and >> qemu-bridge-helper. >> >> Perhaps we can disable qemu-iotests with linux-user only and to not >> build qemu-bridge-helper when tools are disabled? > > Yeah, we shouldn't be building those if you're using --disable-system > --disable-tools...
So something like that should do the work: diff --git a/Makefile b/Makefile .... +ifeq ($(CONFIG_SOFTMMU),y) HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) +endif ... diff --git a/tests/Makefile.include b/tests/Makefile.include ... +ifeq ($(CONFIG_SOFTMMU),y) QEMU_IOTESTS_HELPERS-$(CONFIG_LINUX) = tests/qemu-iotests/socket_scm_helper$(EXESUF) +endif ... I prepare a patch... Thanks, Laurent