]> Git Repo - qemu.git/blob - tools/meson.build
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / tools / meson.build
1 have_virtiofsd = get_option('virtiofsd') \
2     .require(targetos == 'linux',
3              error_message: 'virtiofsd requires Linux') \
4     .require(seccomp.found() and libcap_ng.found(),
5              error_message: 'virtiofsd requires libcap-ng-devel and seccomp-devel') \
6     .require(have_vhost_user,
7              error_message: 'virtiofsd needs vhost-user-support') \
8     .disable_auto_if(not have_tools and not have_system) \
9     .allowed()
10
11 if have_virtiofsd
12   subdir('virtiofsd')
13 endif
This page took 0.025705 seconds and 4 git commands to generate.