2021-10-07 13:08:29 +00:00
|
|
|
# These options do not correspond to a --enable/--disable-* option
|
|
|
|
# on the configure script command line. If you add more, list them in
|
|
|
|
# scripts/meson-buildoptions.py's SKIP_OPTIONS constant too.
|
|
|
|
|
2020-08-26 11:04:16 +00:00
|
|
|
option('qemu_suffix', type : 'string', value: 'qemu',
|
2020-08-26 11:04:15 +00:00
|
|
|
description: 'Suffix for QEMU data/modules/config directories (can be empty)')
|
2022-04-20 15:33:57 +00:00
|
|
|
option('docdir', type : 'string', value : 'share/doc',
|
2020-08-26 11:04:17 +00:00
|
|
|
description: 'Base directory for documentation installation (can be empty)')
|
2022-06-24 15:40:42 +00:00
|
|
|
option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'],
|
2020-10-16 07:19:14 +00:00
|
|
|
description: 'search PATH for firmware files')
|
2022-04-20 15:33:54 +00:00
|
|
|
option('pkgversion', type : 'string', value : '',
|
|
|
|
description: 'use specified string as sub-version of the package')
|
2021-10-13 11:43:36 +00:00
|
|
|
option('smbd', type : 'string', value : '',
|
|
|
|
description: 'Path to smbd for slirp networking')
|
2021-10-13 11:19:00 +00:00
|
|
|
option('iasl', type : 'string', value : '',
|
|
|
|
description: 'Path to ACPI disassembler')
|
2022-04-20 15:33:52 +00:00
|
|
|
option('tls_priority', type : 'string', value : 'NORMAL',
|
|
|
|
description: 'Default TLS protocol/cipher priority string')
|
2020-11-20 07:38:22 +00:00
|
|
|
option('default_devices', type : 'boolean', value : true,
|
|
|
|
description: 'Include a default selection of devices in emulators')
|
2021-10-07 13:06:09 +00:00
|
|
|
option('audio_drv_list', type: 'array', value: ['default'],
|
2023-04-17 10:56:54 +00:00
|
|
|
choices: ['alsa', 'coreaudio', 'default', 'dsound', 'jack', 'oss', 'pa', 'pipewire', 'sdl', 'sndio'],
|
2021-10-07 13:06:09 +00:00
|
|
|
description: 'Set audio driver list')
|
2022-04-20 15:33:53 +00:00
|
|
|
option('block_drv_rw_whitelist', type : 'string', value : '',
|
|
|
|
description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like qemu-img)')
|
|
|
|
option('block_drv_ro_whitelist', type : 'string', value : '',
|
|
|
|
description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like qemu-img)')
|
2022-04-20 15:33:55 +00:00
|
|
|
option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M',
|
|
|
|
description: 'where to find shared libraries etc., use %M for cpu name')
|
2021-10-07 13:08:12 +00:00
|
|
|
option('fuzzing_engine', type : 'string', value : '',
|
|
|
|
description: 'fuzzing engine library for OSS-Fuzz')
|
2021-10-07 13:08:14 +00:00
|
|
|
option('trace_file', type: 'string', value: 'trace',
|
|
|
|
description: 'Trace file prefix for simple backend')
|
2022-10-12 11:19:35 +00:00
|
|
|
option('coroutine_backend', type: 'combo',
|
|
|
|
choices: ['ucontext', 'sigaltstack', 'windows', 'auto'],
|
|
|
|
value: 'auto', description: 'coroutine backend to use')
|
2021-10-07 13:06:09 +00:00
|
|
|
|
2021-10-07 13:08:29 +00:00
|
|
|
# Everything else can be set via --enable/--disable-* option
|
|
|
|
# on the configure script command line. After adding an option
|
|
|
|
# here make sure to run "make update-buildoptions".
|
|
|
|
|
2020-10-15 22:06:25 +00:00
|
|
|
option('docs', type : 'feature', value : 'auto',
|
|
|
|
description: 'Documentations build support')
|
2021-10-07 13:08:12 +00:00
|
|
|
option('fuzzing', type : 'boolean', value: false,
|
|
|
|
description: 'build fuzzing targets')
|
2020-12-10 19:04:12 +00:00
|
|
|
option('gettext', type : 'feature', value : 'auto',
|
2020-09-01 05:59:23 +00:00
|
|
|
description: 'Localization of the GTK+ user interface')
|
2022-10-20 12:53:10 +00:00
|
|
|
option('modules', type : 'feature', value : 'disabled',
|
|
|
|
description: 'modules support (non Windows)')
|
2022-04-20 15:33:46 +00:00
|
|
|
option('module_upgrades', type : 'boolean', value : false,
|
|
|
|
description: 'try to load modules from alternate paths for upgrades')
|
2020-10-16 07:32:52 +00:00
|
|
|
option('install_blobs', type : 'boolean', value : true,
|
|
|
|
description: 'install provided firmware blobs')
|
2020-09-01 11:51:16 +00:00
|
|
|
option('sparse', type : 'feature', value : 'auto',
|
|
|
|
description: 'sparse checker')
|
2021-10-15 14:47:43 +00:00
|
|
|
option('guest_agent', type : 'feature', value : 'auto',
|
|
|
|
description: 'Build QEMU Guest Agent')
|
2021-01-21 10:49:04 +00:00
|
|
|
option('guest_agent_msi', type : 'feature', value : 'auto',
|
|
|
|
description: 'Build MSI package for the QEMU Guest Agent')
|
2021-10-15 14:47:43 +00:00
|
|
|
option('tools', type : 'feature', value : 'auto',
|
|
|
|
description: 'build support utilities that come with QEMU')
|
2022-02-01 12:53:43 +00:00
|
|
|
option('qga_vss', type : 'feature', value: 'auto',
|
|
|
|
description: 'build QGA VSS support (broken with MinGW)')
|
2020-09-01 05:59:23 +00:00
|
|
|
|
2020-09-01 15:15:30 +00:00
|
|
|
option('malloc_trim', type : 'feature', value : 'auto',
|
|
|
|
description: 'enable libc malloc_trim() for memory optimization')
|
|
|
|
option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'],
|
|
|
|
value: 'system', description: 'choose memory allocator to use')
|
|
|
|
|
2020-09-18 08:57:25 +00:00
|
|
|
option('kvm', type: 'feature', value: 'auto',
|
|
|
|
description: 'KVM acceleration support')
|
|
|
|
option('hax', type: 'feature', value: 'auto',
|
|
|
|
description: 'HAX acceleration support')
|
|
|
|
option('whpx', type: 'feature', value: 'auto',
|
|
|
|
description: 'WHPX acceleration support')
|
|
|
|
option('hvf', type: 'feature', value: 'auto',
|
|
|
|
description: 'HVF acceleration support')
|
2021-04-02 20:25:32 +00:00
|
|
|
option('nvmm', type: 'feature', value: 'auto',
|
|
|
|
description: 'NVMM acceleration support')
|
2020-09-18 08:57:25 +00:00
|
|
|
option('xen', type: 'feature', value: 'auto',
|
|
|
|
description: 'Xen backend support')
|
|
|
|
option('xen_pci_passthrough', type: 'feature', value: 'auto',
|
|
|
|
description: 'Xen PCI passthrough support')
|
2022-04-20 15:33:59 +00:00
|
|
|
option('tcg', type: 'feature', value: 'enabled',
|
2020-09-18 08:57:25 +00:00
|
|
|
description: 'TCG support')
|
2020-12-14 11:01:45 +00:00
|
|
|
option('tcg_interpreter', type: 'boolean', value: false,
|
2021-11-06 11:14:57 +00:00
|
|
|
description: 'TCG with bytecode interpreter (slow)')
|
2022-10-12 09:59:51 +00:00
|
|
|
option('safe_stack', type: 'boolean', value: false,
|
|
|
|
description: 'SafeStack Stack Smash Protection (requires clang/llvm and coroutine backend ucontext)')
|
2023-01-09 14:31:51 +00:00
|
|
|
option('sanitizers', type: 'boolean', value: false,
|
|
|
|
description: 'enable default sanitizers')
|
|
|
|
option('tsan', type: 'boolean', value: false,
|
|
|
|
description: 'enable thread sanitizer')
|
2022-10-12 10:46:23 +00:00
|
|
|
option('stack_protector', type: 'feature', value: 'auto',
|
|
|
|
description: 'compiler-provided stack protection')
|
2022-08-17 14:37:23 +00:00
|
|
|
option('cfi', type: 'boolean', value: false,
|
2020-12-04 23:06:14 +00:00
|
|
|
description: 'Control-Flow Integrity (CFI)')
|
2022-08-17 14:37:23 +00:00
|
|
|
option('cfi_debug', type: 'boolean', value: false,
|
2020-12-04 23:06:14 +00:00
|
|
|
description: 'Verbose errors in case of CFI violation')
|
2021-02-17 15:24:25 +00:00
|
|
|
option('multiprocess', type: 'feature', value: 'auto',
|
|
|
|
description: 'Out of process device emulation support')
|
2022-06-13 20:26:24 +00:00
|
|
|
option('vfio_user_server', type: 'feature', value: 'disabled',
|
|
|
|
description: 'vfio-user server support')
|
2021-07-15 07:53:53 +00:00
|
|
|
option('dbus_display', type: 'feature', value: 'auto',
|
|
|
|
description: '-display dbus support')
|
2021-12-21 11:38:27 +00:00
|
|
|
option('tpm', type : 'feature', value : 'auto',
|
|
|
|
description: 'TPM support')
|
2021-11-08 12:52:11 +00:00
|
|
|
|
|
|
|
# Do not enable it by default even for Mingw32, because it doesn't
|
|
|
|
# work on Wine.
|
|
|
|
option('membarrier', type: 'feature', value: 'disabled',
|
|
|
|
description: 'membarrier system call (for Linux 4.14+ or Windows')
|
|
|
|
|
2021-11-08 12:38:58 +00:00
|
|
|
option('avx2', type: 'feature', value: 'auto',
|
|
|
|
description: 'AVX2 optimizations')
|
|
|
|
option('avx512f', type: 'feature', value: 'disabled',
|
|
|
|
description: 'AVX512F optimizations')
|
2022-11-16 15:29:22 +00:00
|
|
|
option('avx512bw', type: 'feature', value: 'auto',
|
|
|
|
description: 'AVX512BW optimizations')
|
2022-04-20 15:33:42 +00:00
|
|
|
option('keyring', type: 'feature', value: 'auto',
|
|
|
|
description: 'Linux keyring support')
|
2020-09-18 08:57:25 +00:00
|
|
|
|
2020-11-17 13:45:24 +00:00
|
|
|
option('attr', type : 'feature', value : 'auto',
|
|
|
|
description: 'attr/xattr support')
|
2021-06-03 09:15:26 +00:00
|
|
|
option('auth_pam', type : 'feature', value : 'auto',
|
|
|
|
description: 'PAM access control')
|
2020-11-17 12:02:17 +00:00
|
|
|
option('brlapi', type : 'feature', value : 'auto',
|
|
|
|
description: 'brlapi character device driver')
|
2020-11-17 12:07:52 +00:00
|
|
|
option('bzip2', type : 'feature', value : 'auto',
|
|
|
|
description: 'bzip2 support for DMG images')
|
2020-11-17 13:46:58 +00:00
|
|
|
option('cap_ng', type : 'feature', value : 'auto',
|
|
|
|
description: 'cap_ng support')
|
blkio: add libblkio block driver
libblkio (https://gitlab.com/libblkio/libblkio/) is a library for
high-performance disk I/O. It currently supports io_uring,
virtio-blk-vhost-user, and virtio-blk-vhost-vdpa with additional drivers
under development.
One of the reasons for developing libblkio is that other applications
besides QEMU can use it. This will be particularly useful for
virtio-blk-vhost-user which applications may wish to use for connecting
to qemu-storage-daemon.
libblkio also gives us an opportunity to develop in Rust behind a C API
that is easy to consume from QEMU.
This commit adds io_uring, nvme-io_uring, virtio-blk-vhost-user, and
virtio-blk-vhost-vdpa BlockDrivers to QEMU using libblkio. It will be
easy to add other libblkio drivers since they will share the majority of
code.
For now I/O buffers are copied through bounce buffers if the libblkio
driver requires it. Later commits add an optimization for
pre-registering guest RAM to avoid bounce buffers.
The syntax is:
--blockdev io_uring,node-name=drive0,filename=test.img,readonly=on|off,cache.direct=on|off
--blockdev nvme-io_uring,node-name=drive0,filename=/dev/ng0n1,readonly=on|off,cache.direct=on
--blockdev virtio-blk-vhost-vdpa,node-name=drive0,path=/dev/vdpa...,readonly=on|off,cache.direct=on
--blockdev virtio-blk-vhost-user,node-name=drive0,path=vhost-user-blk.sock,readonly=on|off,cache.direct=on
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Message-id: 20221013185908.1297568-3-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2022-10-13 18:58:57 +00:00
|
|
|
option('blkio', type : 'feature', value : 'auto',
|
|
|
|
description: 'libblkio block device driver')
|
2021-05-14 11:48:32 +00:00
|
|
|
option('bpf', type : 'feature', value : 'auto',
|
|
|
|
description: 'eBPF support')
|
2020-09-01 15:28:59 +00:00
|
|
|
option('cocoa', type : 'feature', value : 'auto',
|
|
|
|
description: 'Cocoa user interface (macOS only)')
|
2020-11-17 11:43:15 +00:00
|
|
|
option('curl', type : 'feature', value : 'auto',
|
|
|
|
description: 'CURL block device driver')
|
2022-04-20 15:33:44 +00:00
|
|
|
option('gio', type : 'feature', value : 'auto',
|
|
|
|
description: 'use libgio for D-Bus support')
|
2020-11-17 12:01:26 +00:00
|
|
|
option('glusterfs', type : 'feature', value : 'auto',
|
|
|
|
description: 'Glusterfs block device driver')
|
2023-02-10 00:52:07 +00:00
|
|
|
option('libdw', type : 'feature', value : 'auto',
|
|
|
|
description: 'debuginfo support')
|
2020-11-17 12:11:25 +00:00
|
|
|
option('libiscsi', type : 'feature', value : 'auto',
|
|
|
|
description: 'libiscsi userspace initiator')
|
2020-11-17 12:11:25 +00:00
|
|
|
option('libnfs', type : 'feature', value : 'auto',
|
|
|
|
description: 'libnfs block device driver')
|
2020-09-16 16:07:29 +00:00
|
|
|
option('mpath', type : 'feature', value : 'auto',
|
|
|
|
description: 'Multipath persistent reservation passthrough')
|
2021-12-21 11:38:27 +00:00
|
|
|
option('numa', type : 'feature', value : 'auto',
|
|
|
|
description: 'libnuma support')
|
2020-10-12 23:43:48 +00:00
|
|
|
option('iconv', type : 'feature', value : 'auto',
|
|
|
|
description: 'Font glyph conversion support')
|
|
|
|
option('curses', type : 'feature', value : 'auto',
|
|
|
|
description: 'curses UI')
|
2021-06-03 09:15:26 +00:00
|
|
|
option('gnutls', type : 'feature', value : 'auto',
|
|
|
|
description: 'GNUTLS cryptography support')
|
|
|
|
option('nettle', type : 'feature', value : 'auto',
|
|
|
|
description: 'nettle cryptography support')
|
|
|
|
option('gcrypt', type : 'feature', value : 'auto',
|
|
|
|
description: 'libgcrypt cryptography support')
|
2021-11-08 13:02:42 +00:00
|
|
|
option('crypto_afalg', type : 'feature', value : 'disabled',
|
|
|
|
description: 'Linux AF_ALG crypto backend driver')
|
2021-06-03 09:31:35 +00:00
|
|
|
option('libdaxctl', type : 'feature', value : 'auto',
|
|
|
|
description: 'libdaxctl support')
|
2021-06-03 09:31:35 +00:00
|
|
|
option('libpmem', type : 'feature', value : 'auto',
|
|
|
|
description: 'libpmem support')
|
2021-12-09 14:48:01 +00:00
|
|
|
option('libssh', type : 'feature', value : 'auto',
|
|
|
|
description: 'ssh block device support')
|
2020-10-15 10:09:27 +00:00
|
|
|
option('libudev', type : 'feature', value : 'auto',
|
|
|
|
description: 'Use libudev to enumerate host devices')
|
2021-06-03 09:15:26 +00:00
|
|
|
option('libusb', type : 'feature', value : 'auto',
|
|
|
|
description: 'libusb support for USB passthrough')
|
2021-10-07 13:08:20 +00:00
|
|
|
option('linux_aio', type : 'feature', value : 'auto',
|
|
|
|
description: 'Linux AIO support')
|
2021-06-03 09:31:35 +00:00
|
|
|
option('linux_io_uring', type : 'feature', value : 'auto',
|
|
|
|
description: 'Linux io_uring support')
|
2020-11-17 12:35:28 +00:00
|
|
|
option('lzfse', type : 'feature', value : 'auto',
|
|
|
|
description: 'lzfse support for DMG images')
|
2020-11-17 12:11:25 +00:00
|
|
|
option('lzo', type : 'feature', value : 'auto',
|
|
|
|
description: 'lzo compression support')
|
2020-11-17 12:11:25 +00:00
|
|
|
option('rbd', type : 'feature', value : 'auto',
|
|
|
|
description: 'Ceph block device driver')
|
2022-04-20 15:33:40 +00:00
|
|
|
option('opengl', type : 'feature', value : 'auto',
|
|
|
|
description: 'OpenGL support')
|
2022-04-20 15:33:41 +00:00
|
|
|
option('rdma', type : 'feature', value : 'auto',
|
|
|
|
description: 'Enable RDMA-based migration')
|
|
|
|
option('pvrdma', type : 'feature', value : 'auto',
|
|
|
|
description: 'Enable PVRDMA support')
|
2021-01-07 13:02:29 +00:00
|
|
|
option('gtk', type : 'feature', value : 'auto',
|
|
|
|
description: 'GTK+ user interface')
|
2020-09-01 05:59:23 +00:00
|
|
|
option('sdl', type : 'feature', value : 'auto',
|
|
|
|
description: 'SDL user interface')
|
|
|
|
option('sdl_image', type : 'feature', value : 'auto',
|
|
|
|
description: 'SDL Image support for icons')
|
2020-11-17 13:22:24 +00:00
|
|
|
option('seccomp', type : 'feature', value : 'auto',
|
|
|
|
description: 'seccomp support')
|
2021-06-03 09:15:26 +00:00
|
|
|
option('smartcard', type : 'feature', value : 'auto',
|
|
|
|
description: 'CA smartcard emulation support')
|
2020-11-17 12:32:34 +00:00
|
|
|
option('snappy', type : 'feature', value : 'auto',
|
|
|
|
description: 'snappy compression support')
|
2021-10-07 13:08:23 +00:00
|
|
|
option('spice', type : 'feature', value : 'auto',
|
|
|
|
description: 'Spice server support')
|
|
|
|
option('spice_protocol', type : 'feature', value : 'auto',
|
|
|
|
description: 'Spice protocol support')
|
2020-09-01 05:59:23 +00:00
|
|
|
option('u2f', type : 'feature', value : 'auto',
|
|
|
|
description: 'U2F emulation support')
|
2022-05-19 12:38:57 +00:00
|
|
|
option('canokey', type : 'feature', value : 'auto',
|
|
|
|
description: 'CanoKey support')
|
2021-06-03 09:15:26 +00:00
|
|
|
option('usb_redir', type : 'feature', value : 'auto',
|
|
|
|
description: 'libusbredir support')
|
2021-10-28 18:59:08 +00:00
|
|
|
option('l2tpv3', type : 'feature', value : 'auto',
|
|
|
|
description: 'l2tpv3 network backend support')
|
2021-10-07 13:08:22 +00:00
|
|
|
option('netmap', type : 'feature', value : 'auto',
|
|
|
|
description: 'netmap network backend support')
|
2022-04-08 16:20:47 +00:00
|
|
|
option('slirp', type: 'feature', value: 'auto',
|
|
|
|
description: 'libslirp user mode network backend support')
|
2021-10-07 13:08:21 +00:00
|
|
|
option('vde', type : 'feature', value : 'auto',
|
|
|
|
description: 'vde network backend support')
|
2022-03-17 17:28:33 +00:00
|
|
|
option('vmnet', type : 'feature', value : 'auto',
|
|
|
|
description: 'vmnet.framework network backend support')
|
2021-06-03 09:31:35 +00:00
|
|
|
option('virglrenderer', type : 'feature', value : 'auto',
|
|
|
|
description: 'virgl rendering support')
|
2022-04-08 07:13:34 +00:00
|
|
|
option('png', type : 'feature', value : 'auto',
|
|
|
|
description: 'PNG support with libpng')
|
2021-09-03 08:13:55 +00:00
|
|
|
option('vnc', type : 'feature', value : 'auto',
|
2020-09-01 05:59:23 +00:00
|
|
|
description: 'VNC server')
|
|
|
|
option('vnc_jpeg', type : 'feature', value : 'auto',
|
|
|
|
description: 'JPEG lossy compression for VNC server')
|
|
|
|
option('vnc_sasl', type : 'feature', value : 'auto',
|
|
|
|
description: 'SASL authentication for VNC server')
|
2021-06-03 09:31:35 +00:00
|
|
|
option('vte', type : 'feature', value : 'auto',
|
|
|
|
description: 'vte support for the gtk UI')
|
2022-11-21 13:55:38 +00:00
|
|
|
|
|
|
|
# GTK Clipboard implementation is disabled by default, since it may cause hangs
|
|
|
|
# of the guest VCPUs. See gitlab issue 1150:
|
|
|
|
# https://gitlab.com/qemu-project/qemu/-/issues/1150
|
|
|
|
|
|
|
|
option('gtk_clipboard', type: 'feature', value : 'disabled',
|
|
|
|
description: 'clipboard support for the gtk UI (EXPERIMENTAL, MAY HANG)')
|
2020-09-01 05:59:23 +00:00
|
|
|
option('xkbcommon', type : 'feature', value : 'auto',
|
|
|
|
description: 'xkbcommon support')
|
2020-11-17 12:37:39 +00:00
|
|
|
option('zstd', type : 'feature', value : 'auto',
|
|
|
|
description: 'zstd compression support')
|
2020-10-27 19:05:41 +00:00
|
|
|
option('fuse', type: 'feature', value: 'auto',
|
|
|
|
description: 'FUSE block device export')
|
2020-10-27 19:05:46 +00:00
|
|
|
option('fuse_lseek', type : 'feature', value : 'auto',
|
|
|
|
description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports')
|
2020-09-13 19:19:25 +00:00
|
|
|
|
2021-10-07 13:08:14 +00:00
|
|
|
option('trace_backends', type: 'array', value: ['log'],
|
|
|
|
choices: ['dtrace', 'ftrace', 'log', 'nop', 'simple', 'syslog', 'ust'],
|
|
|
|
description: 'Set available tracing backends')
|
|
|
|
|
2021-10-07 13:06:09 +00:00
|
|
|
option('alsa', type: 'feature', value: 'auto',
|
|
|
|
description: 'ALSA sound support')
|
|
|
|
option('coreaudio', type: 'feature', value: 'auto',
|
|
|
|
description: 'CoreAudio sound support')
|
|
|
|
option('dsound', type: 'feature', value: 'auto',
|
|
|
|
description: 'DirectSound sound support')
|
|
|
|
option('jack', type: 'feature', value: 'auto',
|
|
|
|
description: 'JACK sound support')
|
|
|
|
option('oss', type: 'feature', value: 'auto',
|
|
|
|
description: 'OSS sound support')
|
|
|
|
option('pa', type: 'feature', value: 'auto',
|
|
|
|
description: 'PulseAudio sound support')
|
2023-04-17 10:56:54 +00:00
|
|
|
option('pipewire', type: 'feature', value: 'auto',
|
|
|
|
description: 'Pipewire sound support')
|
2022-09-07 13:23:42 +00:00
|
|
|
option('sndio', type: 'feature', value: 'auto',
|
|
|
|
description: 'sndio sound support')
|
2021-10-07 13:06:09 +00:00
|
|
|
|
2022-04-20 15:34:07 +00:00
|
|
|
option('vhost_kernel', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost kernel backend support')
|
|
|
|
option('vhost_net', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-net kernel acceleration support')
|
|
|
|
option('vhost_user', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-user backend support')
|
|
|
|
option('vhost_crypto', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-user crypto backend support')
|
|
|
|
option('vhost_vdpa', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-vdpa kernel backend support')
|
2020-11-17 13:46:21 +00:00
|
|
|
option('vhost_user_blk_server', type: 'feature', value: 'auto',
|
|
|
|
description: 'build vhost-user-blk server')
|
|
|
|
option('virtfs', type: 'feature', value: 'auto',
|
|
|
|
description: 'virtio-9p support')
|
2023-05-03 13:07:56 +00:00
|
|
|
option('virtfs_proxy_helper', type: 'feature', value: 'auto',
|
|
|
|
description: 'virtio-9p proxy helper support')
|
2022-05-23 08:46:08 +00:00
|
|
|
option('libvduse', type: 'feature', value: 'auto',
|
|
|
|
description: 'build VDUSE Library')
|
2022-05-23 08:46:09 +00:00
|
|
|
option('vduse_blk_export', type: 'feature', value: 'auto',
|
|
|
|
description: 'VDUSE block export support')
|
2020-11-17 13:46:21 +00:00
|
|
|
|
2022-05-16 14:58:23 +00:00
|
|
|
option('capstone', type: 'feature', value: 'auto',
|
2020-09-13 19:19:25 +00:00
|
|
|
description: 'Whether and how to find the capstone library')
|
2020-10-05 09:31:15 +00:00
|
|
|
option('fdt', type: 'combo', value: 'auto',
|
|
|
|
choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
|
|
|
|
description: 'Whether and how to find the libfdt library')
|
2021-11-15 20:29:43 +00:00
|
|
|
|
|
|
|
option('selinux', type: 'feature', value: 'auto',
|
|
|
|
description: 'SELinux support in qemu-nbd')
|
2021-10-13 09:43:54 +00:00
|
|
|
option('live_block_migration', type: 'feature', value: 'auto',
|
|
|
|
description: 'block migration in the main migration stream')
|
|
|
|
option('replication', type: 'feature', value: 'auto',
|
|
|
|
description: 'replication support')
|
2023-05-15 13:06:38 +00:00
|
|
|
option('colo_proxy', type: 'feature', value: 'auto',
|
|
|
|
description: 'colo-proxy support')
|
2021-10-13 09:42:25 +00:00
|
|
|
option('bochs', type: 'feature', value: 'auto',
|
|
|
|
description: 'bochs image format support')
|
|
|
|
option('cloop', type: 'feature', value: 'auto',
|
|
|
|
description: 'cloop image format support')
|
|
|
|
option('dmg', type: 'feature', value: 'auto',
|
|
|
|
description: 'dmg image format support')
|
|
|
|
option('qcow1', type: 'feature', value: 'auto',
|
|
|
|
description: 'qcow1 image format support')
|
|
|
|
option('vdi', type: 'feature', value: 'auto',
|
|
|
|
description: 'vdi image format support')
|
2023-04-21 09:27:58 +00:00
|
|
|
option('vhdx', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhdx image format support')
|
|
|
|
option('vmdk', type: 'feature', value: 'auto',
|
|
|
|
description: 'vmdk image format support')
|
|
|
|
option('vpc', type: 'feature', value: 'auto',
|
|
|
|
description: 'vpc image format support')
|
2021-10-13 09:42:25 +00:00
|
|
|
option('vvfat', type: 'feature', value: 'auto',
|
|
|
|
description: 'vvfat image format support')
|
|
|
|
option('qed', type: 'feature', value: 'auto',
|
|
|
|
description: 'qed image format support')
|
|
|
|
option('parallels', type: 'feature', value: 'auto',
|
|
|
|
description: 'parallels image format support')
|
2021-10-13 09:46:09 +00:00
|
|
|
option('block_drv_whitelist_in_tools', type: 'boolean', value: false,
|
|
|
|
description: 'use block whitelist also in tools instead of only QEMU')
|
|
|
|
option('rng_none', type: 'boolean', value: false,
|
|
|
|
description: 'dummy RNG, avoid using /dev/(u)random and getrandom()')
|
2021-10-13 09:52:03 +00:00
|
|
|
option('coroutine_pool', type: 'boolean', value: true,
|
|
|
|
description: 'coroutine freelist (better performance)')
|
2023-05-01 17:34:43 +00:00
|
|
|
option('debug_graph_lock', type: 'boolean', value: false,
|
|
|
|
description: 'graph lock debugging support')
|
2021-10-13 09:46:09 +00:00
|
|
|
option('debug_mutex', type: 'boolean', value: false,
|
|
|
|
description: 'mutex debugging support')
|
2021-10-13 09:52:03 +00:00
|
|
|
option('debug_stack_usage', type: 'boolean', value: false,
|
|
|
|
description: 'measure coroutine stack usage')
|
2023-04-17 13:00:37 +00:00
|
|
|
option('qom_cast_debug', type: 'boolean', value: true,
|
2021-10-13 09:46:09 +00:00
|
|
|
description: 'cast debugging support')
|
|
|
|
option('gprof', type: 'boolean', value: false,
|
2023-01-31 09:42:23 +00:00
|
|
|
description: 'QEMU profiling with gprof',
|
|
|
|
deprecated: true)
|
2021-10-13 09:46:09 +00:00
|
|
|
option('profiler', type: 'boolean', value: false,
|
|
|
|
description: 'profiler support')
|
2021-10-13 11:43:36 +00:00
|
|
|
option('slirp_smbd', type : 'feature', value : 'auto',
|
|
|
|
description: 'use smbd (at path --smbd=*) in slirp networking')
|
2022-09-23 17:38:27 +00:00
|
|
|
|
|
|
|
option('hexagon_idef_parser', type : 'boolean', value : true,
|
|
|
|
description: 'use idef-parser to automatically generate TCG code for the Hexagon frontend')
|