Re: [PATCH 01/14] Makefile: Only build virtiofsd if system-mode is enabled

2020-03-15 Thread Richard Henderson
On 3/15/20 3:16 PM, Philippe Mathieu-Daudé wrote: > On 3/15/20 8:40 PM, Richard Henderson wrote: >> On 3/13/20 3:28 PM, Laurent Vivier wrote:   ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy) -HELPERS-y += virtiofsd$(EXESUF) -vhost-user-json-y += tools/virtiofsd/50-qem

Re: [PATCH 01/14] Makefile: Only build virtiofsd if system-mode is enabled

2020-03-15 Thread Philippe Mathieu-Daudé
On 3/15/20 8:40 PM, Richard Henderson wrote: On 3/13/20 3:28 PM, Laurent Vivier wrote: ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy) -HELPERS-y += virtiofsd$(EXESUF) -vhost-user-json-y += tools/virtiofsd/50-qemu-virtiofsd.json +HELPERS-$(CONFIG_SOFTMMU) += virtiofsd$(EXESUF) +

Re: [PATCH 01/14] Makefile: Only build virtiofsd if system-mode is enabled

2020-03-15 Thread Richard Henderson
On 3/13/20 3:28 PM, Laurent Vivier wrote: >> ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy) >> -HELPERS-y += virtiofsd$(EXESUF) >> -vhost-user-json-y += tools/virtiofsd/50-qemu-virtiofsd.json >> +HELPERS-$(CONFIG_SOFTMMU) += virtiofsd$(EXESUF) >> +vhost-user-json-$(CONFIG_SOFTMMU)

Re: [PATCH 01/14] Makefile: Only build virtiofsd if system-mode is enabled

2020-03-13 Thread Laurent Vivier
Le 13/03/2020 à 19:36, Philippe Mathieu-Daudé a écrit : > Do not build the virtiofsd helper when configured with > --disable-system. > > Signed-off-by: Philippe Mathieu-Daudé > --- > Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Makefile b/Makefile > inde

[PATCH 01/14] Makefile: Only build virtiofsd if system-mode is enabled

2020-03-13 Thread Philippe Mathieu-Daudé
Do not build the virtiofsd helper when configured with --disable-system. Signed-off-by: Philippe Mathieu-Daudé --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7df22fcc5d..ed77b6e50b 100644 --- a/Makefile +++ b/Makefile @@ -346,8 +346