1# These options do not correspond to a --enable/--disable-* option 2# on the configure script command line. If you add more, list them in 3# scripts/meson-buildoptions.py's SKIP_OPTIONS constant too. 4 5option('qemu_suffix', type : 'string', value: 'qemu', 6 description: 'Suffix for QEMU data/modules/config directories (can be empty)') 7option('docdir', type : 'string', value : 'share/doc', 8 description: 'Base directory for documentation installation (can be empty)') 9option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'], 10 description: 'search PATH for firmware files') 11option('pkgversion', type : 'string', value : '', 12 description: 'use specified string as sub-version of the package') 13option('smbd', type : 'string', value : '', 14 description: 'Path to smbd for slirp networking') 15option('iasl', type : 'string', value : '', 16 description: 'Path to ACPI disassembler') 17option('tls_priority', type : 'string', value : 'NORMAL', 18 description: 'Default TLS protocol/cipher priority string') 19option('default_devices', type : 'boolean', value : true, 20 description: 'Include a default selection of devices in emulators') 21option('audio_drv_list', type: 'array', value: ['default'], 22 choices: ['alsa', 'coreaudio', 'default', 'dsound', 'jack', 'oss', 'pa', 'pipewire', 'sdl', 'sndio'], 23 description: 'Set audio driver list') 24option('block_drv_rw_whitelist', type : 'string', value : '', 25 description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like qemu-img)') 26option('block_drv_ro_whitelist', type : 'string', value : '', 27 description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like qemu-img)') 28option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M', 29 description: 'where to find shared libraries etc., use %M for cpu name') 30option('rtsig_map', type : 'string', value : 'NULL', 31 description: 'default value of QEMU_RTSIG_MAP') 32option('fuzzing_engine', type : 'string', value : '', 33 description: 'fuzzing engine library for OSS-Fuzz') 34option('trace_file', type: 'string', value: 'trace', 35 description: 'Trace file prefix for simple backend') 36option('coroutine_backend', type: 'combo', 37 choices: ['ucontext', 'sigaltstack', 'windows', 'auto'], 38 value: 'auto', description: 'coroutine backend to use') 39 40# Everything else can be set via --enable/--disable-* option 41# on the configure script command line. After adding an option 42# here make sure to run "make update-buildoptions". 43 44option('docs', type : 'feature', value : 'auto', 45 description: 'Documentations build support') 46option('fuzzing', type : 'boolean', value: false, 47 description: 'build fuzzing targets') 48option('gettext', type : 'feature', value : 'auto', 49 description: 'Localization of the GTK+ user interface') 50option('modules', type : 'feature', value : 'disabled', 51 description: 'modules support (non Windows)') 52option('module_upgrades', type : 'boolean', value : false, 53 description: 'try to load modules from alternate paths for upgrades') 54option('install_blobs', type : 'boolean', value : true, 55 description: 'install provided firmware blobs') 56option('sparse', type : 'feature', value : 'auto', 57 description: 'sparse checker') 58option('guest_agent', type : 'feature', value : 'auto', 59 description: 'Build QEMU Guest Agent') 60option('guest_agent_msi', type : 'feature', value : 'auto', 61 description: 'Build MSI package for the QEMU Guest Agent') 62option('tools', type : 'feature', value : 'auto', 63 description: 'build support utilities that come with QEMU') 64option('qga_vss', type : 'feature', value: 'auto', 65 description: 'build QGA VSS support (broken with MinGW)') 66 67option('malloc_trim', type : 'feature', value : 'auto', 68 description: 'enable libc malloc_trim() for memory optimization') 69option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'], 70 value: 'system', description: 'choose memory allocator to use') 71 72option('kvm', type: 'feature', value: 'auto', 73 description: 'KVM acceleration support') 74option('whpx', type: 'feature', value: 'auto', 75 description: 'WHPX acceleration support') 76option('hvf', type: 'feature', value: 'auto', 77 description: 'HVF acceleration support') 78option('nvmm', type: 'feature', value: 'auto', 79 description: 'NVMM acceleration support') 80option('xen', type: 'feature', value: 'auto', 81 description: 'Xen backend support') 82option('xen_pci_passthrough', type: 'feature', value: 'auto', 83 description: 'Xen PCI passthrough support') 84option('tcg', type: 'feature', value: 'enabled', 85 description: 'TCG support') 86option('plugins', type: 'boolean', value: false, 87 description: 'TCG plugins via shared library loading') 88option('debug_tcg', type: 'boolean', value: false, 89 description: 'TCG debugging') 90option('debug_remap', type: 'boolean', value: false, 91 description: 'syscall buffer debugging support') 92option('tcg_interpreter', type: 'boolean', value: false, 93 description: 'TCG with bytecode interpreter (slow)') 94option('safe_stack', type: 'boolean', value: false, 95 description: 'SafeStack Stack Smash Protection (requires clang/llvm and coroutine backend ucontext)') 96option('asan', type: 'boolean', value: false, 97 description: 'enable address sanitizer') 98option('ubsan', type: 'boolean', value: false, 99 description: 'enable undefined behaviour sanitizer') 100option('tsan', type: 'boolean', value: false, 101 description: 'enable thread sanitizer') 102option('stack_protector', type: 'feature', value: 'auto', 103 description: 'compiler-provided stack protection') 104option('cfi', type: 'boolean', value: false, 105 description: 'Control-Flow Integrity (CFI)') 106option('cfi_debug', type: 'boolean', value: false, 107 description: 'Verbose errors in case of CFI violation') 108option('multiprocess', type: 'feature', value: 'auto', 109 description: 'Out of process device emulation support') 110option('relocatable', type : 'boolean', value : true, 111 description: 'toggle relocatable install') 112option('vfio_user_server', type: 'feature', value: 'disabled', 113 description: 'vfio-user server support') 114option('dbus_display', type: 'feature', value: 'auto', 115 description: '-display dbus support') 116option('tpm', type : 'feature', value : 'auto', 117 description: 'TPM support') 118 119# Do not enable it by default even for Mingw32, because it doesn't 120# work on Wine. 121option('membarrier', type: 'feature', value: 'disabled', 122 description: 'membarrier system call (for Linux 4.14+ or Windows') 123 124option('avx2', type: 'feature', value: 'auto', 125 description: 'AVX2 optimizations') 126option('avx512bw', type: 'feature', value: 'auto', 127 description: 'AVX512BW optimizations') 128option('keyring', type: 'feature', value: 'auto', 129 description: 'Linux keyring support') 130option('libkeyutils', type: 'feature', value: 'auto', 131 description: 'Linux keyutils support') 132 133option('af_xdp', type : 'feature', value : 'auto', 134 description: 'AF_XDP network backend support') 135option('attr', type : 'feature', value : 'auto', 136 description: 'attr/xattr support') 137option('auth_pam', type : 'feature', value : 'auto', 138 description: 'PAM access control') 139option('brlapi', type : 'feature', value : 'auto', 140 description: 'brlapi character device driver') 141option('bzip2', type : 'feature', value : 'auto', 142 description: 'bzip2 support for DMG images') 143option('cap_ng', type : 'feature', value : 'auto', 144 description: 'cap_ng support') 145option('blkio', type : 'feature', value : 'auto', 146 description: 'libblkio block device driver') 147option('bpf', type : 'feature', value : 'auto', 148 description: 'eBPF support') 149option('cocoa', type : 'feature', value : 'auto', 150 description: 'Cocoa user interface (macOS only)') 151option('curl', type : 'feature', value : 'auto', 152 description: 'CURL block device driver') 153option('gio', type : 'feature', value : 'auto', 154 description: 'use libgio for D-Bus support') 155option('glusterfs', type : 'feature', value : 'auto', 156 description: 'Glusterfs block device driver') 157option('hv_balloon', type : 'feature', value : 'auto', 158 description: 'hv-balloon driver (requires Glib 2.68+ GTree API)') 159option('libdw', type : 'feature', value : 'auto', 160 description: 'debuginfo support') 161option('libiscsi', type : 'feature', value : 'auto', 162 description: 'libiscsi userspace initiator') 163option('libnfs', type : 'feature', value : 'auto', 164 description: 'libnfs block device driver') 165option('mpath', type : 'feature', value : 'auto', 166 description: 'Multipath persistent reservation passthrough') 167option('numa', type : 'feature', value : 'auto', 168 description: 'libnuma support') 169option('iconv', type : 'feature', value : 'auto', 170 description: 'Font glyph conversion support') 171option('curses', type : 'feature', value : 'auto', 172 description: 'curses UI') 173option('libcbor', type : 'feature', value : 'auto', 174 description: 'libcbor support') 175option('gnutls', type : 'feature', value : 'auto', 176 description: 'GNUTLS cryptography support') 177option('nettle', type : 'feature', value : 'auto', 178 description: 'nettle cryptography support') 179option('gcrypt', type : 'feature', value : 'auto', 180 description: 'libgcrypt cryptography support') 181option('crypto_afalg', type : 'feature', value : 'disabled', 182 description: 'Linux AF_ALG crypto backend driver') 183option('libdaxctl', type : 'feature', value : 'auto', 184 description: 'libdaxctl support') 185option('libpmem', type : 'feature', value : 'auto', 186 description: 'libpmem support') 187option('libssh', type : 'feature', value : 'auto', 188 description: 'ssh block device support') 189option('libudev', type : 'feature', value : 'auto', 190 description: 'Use libudev to enumerate host devices') 191option('libusb', type : 'feature', value : 'auto', 192 description: 'libusb support for USB passthrough') 193option('linux_aio', type : 'feature', value : 'auto', 194 description: 'Linux AIO support') 195option('linux_io_uring', type : 'feature', value : 'auto', 196 description: 'Linux io_uring support') 197option('lzfse', type : 'feature', value : 'auto', 198 description: 'lzfse support for DMG images') 199option('lzo', type : 'feature', value : 'auto', 200 description: 'lzo compression support') 201option('rbd', type : 'feature', value : 'auto', 202 description: 'Ceph block device driver') 203option('opengl', type : 'feature', value : 'auto', 204 description: 'OpenGL support') 205option('rdma', type : 'feature', value : 'auto', 206 description: 'Enable RDMA-based migration') 207option('gtk', type : 'feature', value : 'auto', 208 description: 'GTK+ user interface') 209option('sdl', type : 'feature', value : 'auto', 210 description: 'SDL user interface') 211option('sdl_image', type : 'feature', value : 'auto', 212 description: 'SDL Image support for icons') 213option('seccomp', type : 'feature', value : 'auto', 214 description: 'seccomp support') 215option('smartcard', type : 'feature', value : 'auto', 216 description: 'CA smartcard emulation support') 217option('snappy', type : 'feature', value : 'auto', 218 description: 'snappy compression support') 219option('spice', type : 'feature', value : 'auto', 220 description: 'Spice server support') 221option('spice_protocol', type : 'feature', value : 'auto', 222 description: 'Spice protocol support') 223option('u2f', type : 'feature', value : 'auto', 224 description: 'U2F emulation support') 225option('canokey', type : 'feature', value : 'auto', 226 description: 'CanoKey support') 227option('usb_redir', type : 'feature', value : 'auto', 228 description: 'libusbredir support') 229option('l2tpv3', type : 'feature', value : 'auto', 230 description: 'l2tpv3 network backend support') 231option('netmap', type : 'feature', value : 'auto', 232 description: 'netmap network backend support') 233option('pixman', type : 'feature', value : 'auto', 234 description: 'pixman support') 235option('slirp', type: 'feature', value: 'auto', 236 description: 'libslirp user mode network backend support') 237option('vde', type : 'feature', value : 'auto', 238 description: 'vde network backend support') 239option('vmnet', type : 'feature', value : 'auto', 240 description: 'vmnet.framework network backend support') 241option('virglrenderer', type : 'feature', value : 'auto', 242 description: 'virgl rendering support') 243option('rutabaga_gfx', type : 'feature', value : 'auto', 244 description: 'rutabaga_gfx support') 245option('png', type : 'feature', value : 'auto', 246 description: 'PNG support with libpng') 247option('vnc', type : 'feature', value : 'auto', 248 description: 'VNC server') 249option('vnc_jpeg', type : 'feature', value : 'auto', 250 description: 'JPEG lossy compression for VNC server') 251option('vnc_sasl', type : 'feature', value : 'auto', 252 description: 'SASL authentication for VNC server') 253option('vte', type : 'feature', value : 'auto', 254 description: 'vte support for the gtk UI') 255 256# GTK Clipboard implementation is disabled by default, since it may cause hangs 257# of the guest VCPUs. See gitlab issue 1150: 258# https://gitlab.com/qemu-project/qemu/-/issues/1150 259 260option('gtk_clipboard', type: 'feature', value : 'disabled', 261 description: 'clipboard support for the gtk UI (EXPERIMENTAL, MAY HANG)') 262option('xkbcommon', type : 'feature', value : 'auto', 263 description: 'xkbcommon support') 264option('zstd', type : 'feature', value : 'auto', 265 description: 'zstd compression support') 266option('qpl', type : 'feature', value : 'auto', 267 description: 'Query Processing Library support') 268option('uadk', type : 'feature', value : 'auto', 269 description: 'UADK Library support') 270option('qatzip', type: 'feature', value: 'auto', 271 description: 'QATzip compression support') 272option('fuse', type: 'feature', value: 'auto', 273 description: 'FUSE block device export') 274option('fuse_lseek', type : 'feature', value : 'auto', 275 description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports') 276 277option('trace_backends', type: 'array', value: ['log'], 278 choices: ['dtrace', 'ftrace', 'log', 'nop', 'simple', 'syslog', 'ust'], 279 description: 'Set available tracing backends') 280 281option('alsa', type: 'feature', value: 'auto', 282 description: 'ALSA sound support') 283option('coreaudio', type: 'feature', value: 'auto', 284 description: 'CoreAudio sound support') 285option('dsound', type: 'feature', value: 'auto', 286 description: 'DirectSound sound support') 287option('jack', type: 'feature', value: 'auto', 288 description: 'JACK sound support') 289option('oss', type: 'feature', value: 'auto', 290 description: 'OSS sound support') 291option('pa', type: 'feature', value: 'auto', 292 description: 'PulseAudio sound support') 293option('pipewire', type: 'feature', value: 'auto', 294 description: 'PipeWire sound support') 295option('sndio', type: 'feature', value: 'auto', 296 description: 'sndio sound support') 297 298option('vhost_kernel', type: 'feature', value: 'auto', 299 description: 'vhost kernel backend support') 300option('vhost_net', type: 'feature', value: 'auto', 301 description: 'vhost-net kernel acceleration support') 302option('vhost_user', type: 'feature', value: 'auto', 303 description: 'vhost-user backend support') 304option('vhost_crypto', type: 'feature', value: 'auto', 305 description: 'vhost-user crypto backend support') 306option('vhost_vdpa', type: 'feature', value: 'auto', 307 description: 'vhost-vdpa kernel backend support') 308option('vhost_user_blk_server', type: 'feature', value: 'auto', 309 description: 'build vhost-user-blk server') 310option('virtfs', type: 'feature', value: 'auto', 311 description: 'virtio-9p support') 312option('libvduse', type: 'feature', value: 'auto', 313 description: 'build VDUSE Library') 314option('vduse_blk_export', type: 'feature', value: 'auto', 315 description: 'VDUSE block export support') 316 317option('capstone', type: 'feature', value: 'auto', 318 description: 'Whether and how to find the capstone library') 319option('fdt', type: 'combo', value: 'auto', 320 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 321 description: 'Whether and how to find the libfdt library') 322 323option('selinux', type: 'feature', value: 'auto', 324 description: 'SELinux support in qemu-nbd') 325option('replication', type: 'feature', value: 'auto', 326 description: 'replication support') 327option('colo_proxy', type: 'feature', value: 'auto', 328 description: 'colo-proxy support') 329option('bochs', type: 'feature', value: 'auto', 330 description: 'bochs image format support') 331option('cloop', type: 'feature', value: 'auto', 332 description: 'cloop image format support') 333option('dmg', type: 'feature', value: 'auto', 334 description: 'dmg image format support') 335option('qcow1', type: 'feature', value: 'auto', 336 description: 'qcow1 image format support') 337option('vdi', type: 'feature', value: 'auto', 338 description: 'vdi image format support') 339option('vhdx', type: 'feature', value: 'auto', 340 description: 'vhdx image format support') 341option('vmdk', type: 'feature', value: 'auto', 342 description: 'vmdk image format support') 343option('vpc', type: 'feature', value: 'auto', 344 description: 'vpc image format support') 345option('vvfat', type: 'feature', value: 'auto', 346 description: 'vvfat image format support') 347option('qed', type: 'feature', value: 'auto', 348 description: 'qed image format support') 349option('parallels', type: 'feature', value: 'auto', 350 description: 'parallels image format support') 351option('block_drv_whitelist_in_tools', type: 'boolean', value: false, 352 description: 'use block whitelist also in tools instead of only QEMU') 353option('rng_none', type: 'boolean', value: false, 354 description: 'dummy RNG, avoid using /dev/(u)random and getrandom()') 355option('coroutine_pool', type: 'boolean', value: true, 356 description: 'coroutine freelist (better performance)') 357option('debug_graph_lock', type: 'boolean', value: false, 358 description: 'graph lock debugging support') 359option('debug_mutex', type: 'boolean', value: false, 360 description: 'mutex debugging support') 361option('debug_stack_usage', type: 'boolean', value: false, 362 description: 'measure coroutine stack usage') 363option('qom_cast_debug', type: 'boolean', value: true, 364 description: 'cast debugging support') 365option('slirp_smbd', type : 'feature', value : 'auto', 366 description: 'use smbd (at path --smbd=*) in slirp networking') 367 368option('qemu_ga_manufacturer', type: 'string', value: 'QEMU', 369 description: '"manufacturer" name for qemu-ga registry entries') 370option('qemu_ga_distro', type: 'string', value: 'Linux', 371 description: 'second path element in qemu-ga registry entries') 372option('qemu_ga_version', type: 'string', value: '', 373 description: 'version number for qemu-ga installer') 374 375option('hexagon_idef_parser', type : 'boolean', value : true, 376 description: 'use idef-parser to automatically generate TCG code for the Hexagon frontend') 377 378option('x86_version', type : 'combo', choices : ['0', '1', '2', '3', '4'], value: '1', 379 description: 'tweak required x86_64 architecture version beyond compiler default') 380 381option('rust', type: 'feature', value: 'disabled', 382 description: 'Rust support') 383option('strict_rust_lints', type: 'boolean', value: false, 384 description: 'Enable stricter set of Rust warnings') 385