blob: bbb5c7e88634594718d9234d2ae9d2fb21e6cb50 [file] [log] [blame]
Paolo Bonzini3b4da132021-10-07 15:08:29 +02001# 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
Marc-André Lureauab4c0992020-08-26 15:04:16 +04005option('qemu_suffix', type : 'string', value: 'qemu',
Marc-André Lureau73f3aa32020-08-26 15:04:15 +04006 description: 'Suffix for QEMU data/modules/config directories (can be empty)')
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +02007option('docdir', type : 'string', value : 'share/doc',
Marc-André Lureau491e74c2020-08-26 15:04:17 +04008 description: 'Base directory for documentation installation (can be empty)')
Akihiko Odaki8154f5e2022-06-25 00:40:42 +09009option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'],
Paolo Bonzini16bf7a32020-10-16 03:19:14 -040010 description: 'search PATH for firmware files')
Paolo Bonzinib0b43232022-04-20 17:33:54 +020011option('pkgversion', type : 'string', value : '',
12 description: 'use specified string as sub-version of the package')
Paolo Bonzini35acbb32021-10-13 13:43:36 +020013option('smbd', type : 'string', value : '',
14 description: 'Path to smbd for slirp networking')
Paolo Bonzini5dc46182021-10-13 13:19:00 +020015option('iasl', type : 'string', value : '',
16 description: 'Path to ACPI disassembler')
Paolo Bonzini41f2ae22022-04-20 17:33:52 +020017option('tls_priority', type : 'string', value : 'NORMAL',
18 description: 'Default TLS protocol/cipher priority string')
Paolo Bonzini7bc3ca72020-11-20 08:38:22 +010019option('default_devices', type : 'boolean', value : true,
20 description: 'Include a default selection of devices in emulators')
Paolo Bonzini87430d52021-10-07 15:06:09 +020021option('audio_drv_list', type: 'array', value: ['default'],
Dorinda Basseyc2d3d1c2023-04-17 12:56:54 +020022 choices: ['alsa', 'coreaudio', 'default', 'dsound', 'jack', 'oss', 'pa', 'pipewire', 'sdl', 'sndio'],
Paolo Bonzini87430d52021-10-07 15:06:09 +020023 description: 'Set audio driver list')
Paolo Bonzini622d64f2022-04-20 17:33:53 +020024option('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)')
Paolo Bonzinice6119d2022-04-20 17:33:55 +020028option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M',
29 description: 'where to find shared libraries etc., use %M for cpu name')
Paolo Bonzini537b7242021-10-07 15:08:12 +020030option('fuzzing_engine', type : 'string', value : '',
31 description: 'fuzzing engine library for OSS-Fuzz')
Paolo Bonzini9c29b742021-10-07 15:08:14 +020032option('trace_file', type: 'string', value: 'trace',
33 description: 'Trace file prefix for simple backend')
Paolo Bonzini67398252022-10-12 13:19:35 +020034option('coroutine_backend', type: 'combo',
35 choices: ['ucontext', 'sigaltstack', 'windows', 'auto'],
36 value: 'auto', description: 'coroutine backend to use')
Paolo Bonzini87430d52021-10-07 15:06:09 +020037
Paolo Bonzini3b4da132021-10-07 15:08:29 +020038# Everything else can be set via --enable/--disable-* option
39# on the configure script command line. After adding an option
40# here make sure to run "make update-buildoptions".
41
Yonggang Luoe3667662020-10-16 06:06:25 +080042option('docs', type : 'feature', value : 'auto',
43 description: 'Documentations build support')
Paolo Bonzini537b7242021-10-07 15:08:12 +020044option('fuzzing', type : 'boolean', value: false,
45 description: 'build fuzzing targets')
Alex Bennée0e8e77d2020-12-10 19:04:12 +000046option('gettext', type : 'feature', value : 'auto',
Paolo Bonzinicb572712020-09-01 01:59:23 -040047 description: 'Localization of the GTK+ user interface')
Paolo Bonzini60027112022-10-20 14:53:10 +020048option('modules', type : 'feature', value : 'disabled',
49 description: 'modules support (non Windows)')
Paolo Bonzini2cb2f582022-04-20 17:33:46 +020050option('module_upgrades', type : 'boolean', value : false,
51 description: 'try to load modules from alternate paths for upgrades')
Paolo Bonzinic8d54502020-10-16 03:32:52 -040052option('install_blobs', type : 'boolean', value : true,
53 description: 'install provided firmware blobs')
Paolo Bonzinideb62372020-09-01 07:51:16 -040054option('sparse', type : 'feature', value : 'auto',
55 description: 'sparse checker')
Paolo Bonzini20cf5cb2021-10-15 16:47:43 +020056option('guest_agent', type : 'feature', value : 'auto',
57 description: 'Build QEMU Guest Agent')
Paolo Bonzinib846ab72021-01-21 11:49:04 +010058option('guest_agent_msi', type : 'feature', value : 'auto',
59 description: 'Build MSI package for the QEMU Guest Agent')
Paolo Bonzini20cf5cb2021-10-15 16:47:43 +020060option('tools', type : 'feature', value : 'auto',
61 description: 'build support utilities that come with QEMU')
Marc-André Lureau8821a382022-02-01 16:53:43 +040062option('qga_vss', type : 'feature', value: 'auto',
63 description: 'build QGA VSS support (broken with MinGW)')
Paolo Bonzinicb572712020-09-01 01:59:23 -040064
Paolo Bonziniaa087962020-09-01 11:15:30 -040065option('malloc_trim', type : 'feature', value : 'auto',
66 description: 'enable libc malloc_trim() for memory optimization')
67option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'],
68 value: 'system', description: 'choose memory allocator to use')
69
Paolo Bonzini1badb702020-09-18 04:57:25 -040070option('kvm', type: 'feature', value: 'auto',
71 description: 'KVM acceleration support')
72option('hax', type: 'feature', value: 'auto',
73 description: 'HAX acceleration support')
74option('whpx', type: 'feature', value: 'auto',
75 description: 'WHPX acceleration support')
76option('hvf', type: 'feature', value: 'auto',
77 description: 'HVF acceleration support')
Reinoud Zandijk74a414a2021-04-02 22:25:32 +020078option('nvmm', type: 'feature', value: 'auto',
79 description: 'NVMM acceleration support')
Paolo Bonzini1badb702020-09-18 04:57:25 -040080option('xen', type: 'feature', value: 'auto',
81 description: 'Xen backend support')
82option('xen_pci_passthrough', type: 'feature', value: 'auto',
83 description: 'Xen PCI passthrough support')
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +020084option('tcg', type: 'feature', value: 'enabled',
Paolo Bonzini1badb702020-09-18 04:57:25 -040085 description: 'TCG support')
Paolo Bonzini23a77b22020-12-14 12:01:45 +010086option('tcg_interpreter', type: 'boolean', value: false,
Philippe Mathieu-Daudéf1f727a2021-11-06 12:14:57 +010087 description: 'TCG with bytecode interpreter (slow)')
Paolo Bonzini721fa5e2022-10-12 11:59:51 +020088option('safe_stack', type: 'boolean', value: false,
89 description: 'SafeStack Stack Smash Protection (requires clang/llvm and coroutine backend ucontext)')
Paolo Bonzini34f983d2023-01-09 15:31:51 +010090option('sanitizers', type: 'boolean', value: false,
91 description: 'enable default sanitizers')
92option('tsan', type: 'boolean', value: false,
93 description: 'enable thread sanitizer')
Paolo Bonzini911d4ca2022-10-12 12:46:23 +020094option('stack_protector', type: 'feature', value: 'auto',
95 description: 'compiler-provided stack protection')
Anton Kochkov01698152022-08-17 14:37:23 +000096option('cfi', type: 'boolean', value: false,
Daniele Buono9e62ba42020-12-04 18:06:14 -050097 description: 'Control-Flow Integrity (CFI)')
Anton Kochkov01698152022-08-17 14:37:23 +000098option('cfi_debug', type: 'boolean', value: false,
Daniele Buono9e62ba42020-12-04 18:06:14 -050099 description: 'Verbose errors in case of CFI violation')
Paolo Bonzini106ad1f2021-02-17 16:24:25 +0100100option('multiprocess', type: 'feature', value: 'auto',
101 description: 'Out of process device emulation support')
Jagannathan Raman55116962022-06-13 16:26:24 -0400102option('vfio_user_server', type: 'feature', value: 'disabled',
103 description: 'vfio-user server support')
Marc-André Lureau142ca622021-07-15 11:53:53 +0400104option('dbus_display', type: 'feature', value: 'auto',
105 description: '-display dbus support')
Paolo Bonzini0d04c4c2021-12-21 12:38:27 +0100106option('tpm', type : 'feature', value : 'auto',
107 description: 'TPM support')
Paolo Bonzinib87df902021-11-08 13:52:11 +0100108
109# Do not enable it by default even for Mingw32, because it doesn't
110# work on Wine.
111option('membarrier', type: 'feature', value: 'disabled',
112 description: 'membarrier system call (for Linux 4.14+ or Windows')
113
Paolo Bonzini622753d2021-11-08 13:38:58 +0100114option('avx2', type: 'feature', value: 'auto',
115 description: 'AVX2 optimizations')
116option('avx512f', type: 'feature', value: 'disabled',
117 description: 'AVX512F optimizations')
ling xu04ffce12022-11-16 23:29:22 +0800118option('avx512bw', type: 'feature', value: 'auto',
119 description: 'AVX512BW optimizations')
Paolo Bonzini2edd2c02022-04-20 17:33:42 +0200120option('keyring', type: 'feature', value: 'auto',
121 description: 'Linux keyring support')
Paolo Bonzini1badb702020-09-18 04:57:25 -0400122
Paolo Bonzinif7f2d652020-11-17 14:45:24 +0100123option('attr', type : 'feature', value : 'auto',
124 description: 'attr/xattr support')
Paolo Bonzini05e391a2021-06-03 11:15:26 +0200125option('auth_pam', type : 'feature', value : 'auto',
126 description: 'PAM access control')
Paolo Bonzini8c6d4ff2020-11-17 13:02:17 +0100127option('brlapi', type : 'feature', value : 'auto',
128 description: 'brlapi character device driver')
Paolo Bonzini29ba6112020-11-17 13:07:52 +0100129option('bzip2', type : 'feature', value : 'auto',
130 description: 'bzip2 support for DMG images')
Paolo Bonzini727c8bb2020-11-17 14:46:58 +0100131option('cap_ng', type : 'feature', value : 'auto',
132 description: 'cap_ng support')
Stefan Hajnoczifd66dbd2022-10-13 14:58:57 -0400133option('blkio', type : 'feature', value : 'auto',
134 description: 'libblkio block device driver')
Andrew Melnychenko46627f42021-05-14 14:48:32 +0300135option('bpf', type : 'feature', value : 'auto',
136 description: 'eBPF support')
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400137option('cocoa', type : 'feature', value : 'auto',
138 description: 'Cocoa user interface (macOS only)')
Paolo Bonzinif9cd86f2020-11-17 12:43:15 +0100139option('curl', type : 'feature', value : 'auto',
140 description: 'CURL block device driver')
Paolo Bonzini75440602022-04-20 17:33:44 +0200141option('gio', type : 'feature', value : 'auto',
142 description: 'use libgio for D-Bus support')
Paolo Bonzini08821ca2020-11-17 13:01:26 +0100143option('glusterfs', type : 'feature', value : 'auto',
144 description: 'Glusterfs block device driver')
Ilya Leoshkevichbc71d582023-02-10 01:52:07 +0100145option('libdw', type : 'feature', value : 'auto',
146 description: 'debuginfo support')
Paolo Bonzini9db405a2020-11-17 13:11:25 +0100147option('libiscsi', type : 'feature', value : 'auto',
148 description: 'libiscsi userspace initiator')
Paolo Bonzini30045c02020-11-17 13:11:25 +0100149option('libnfs', type : 'feature', value : 'auto',
150 description: 'libnfs block device driver')
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200151option('mpath', type : 'feature', value : 'auto',
152 description: 'Multipath persistent reservation passthrough')
Paolo Bonzini488a8c72021-12-21 12:38:27 +0100153option('numa', type : 'feature', value : 'auto',
154 description: 'libnuma support')
Yonggang Luo5285e592020-10-13 07:43:48 +0800155option('iconv', type : 'feature', value : 'auto',
156 description: 'Font glyph conversion support')
157option('curses', type : 'feature', value : 'auto',
158 description: 'curses UI')
Paolo Bonzini57612512021-06-03 11:15:26 +0200159option('gnutls', type : 'feature', value : 'auto',
160 description: 'GNUTLS cryptography support')
161option('nettle', type : 'feature', value : 'auto',
162 description: 'nettle cryptography support')
163option('gcrypt', type : 'feature', value : 'auto',
164 description: 'libgcrypt cryptography support')
Paolo Bonzini34b52612021-11-08 14:02:42 +0100165option('crypto_afalg', type : 'feature', value : 'disabled',
166 description: 'Linux AF_ALG crypto backend driver')
Paolo Bonzini83ef1682021-06-03 11:31:35 +0200167option('libdaxctl', type : 'feature', value : 'auto',
168 description: 'libdaxctl support')
Paolo Bonzinie36e8c72021-06-03 11:31:35 +0200169option('libpmem', type : 'feature', value : 'auto',
170 description: 'libpmem support')
Thomas Huthe6a52b32021-12-09 15:48:01 +0100171option('libssh', type : 'feature', value : 'auto',
172 description: 'ssh block device support')
Paolo Bonzini5c530152020-10-15 06:09:27 -0400173option('libudev', type : 'feature', value : 'auto',
174 description: 'Use libudev to enumerate host devices')
Paolo Bonzini90540f32021-06-03 11:15:26 +0200175option('libusb', type : 'feature', value : 'auto',
176 description: 'libusb support for USB passthrough')
Paolo Bonziniff66f3e2021-10-07 15:08:20 +0200177option('linux_aio', type : 'feature', value : 'auto',
178 description: 'Linux AIO support')
Paolo Bonzini53c22b62021-06-03 11:31:35 +0200179option('linux_io_uring', type : 'feature', value : 'auto',
180 description: 'Linux io_uring support')
Paolo Bonziniecea3692020-11-17 13:35:28 +0100181option('lzfse', type : 'feature', value : 'auto',
182 description: 'lzfse support for DMG images')
Paolo Bonzini0c32a0a2020-11-17 13:11:25 +0100183option('lzo', type : 'feature', value : 'auto',
184 description: 'lzo compression support')
Paolo Bonzinifabd1e92020-11-17 13:11:25 +0100185option('rbd', type : 'feature', value : 'auto',
186 description: 'Ceph block device driver')
Paolo Bonzini88b6e612022-04-20 17:33:40 +0200187option('opengl', type : 'feature', value : 'auto',
188 description: 'OpenGL support')
Paolo Bonzini3730a732022-04-20 17:33:41 +0200189option('rdma', type : 'feature', value : 'auto',
190 description: 'Enable RDMA-based migration')
191option('pvrdma', type : 'feature', value : 'auto',
192 description: 'Enable PVRDMA support')
Paolo Bonzini1b695472021-01-07 14:02:29 +0100193option('gtk', type : 'feature', value : 'auto',
194 description: 'GTK+ user interface')
Paolo Bonzinicb572712020-09-01 01:59:23 -0400195option('sdl', type : 'feature', value : 'auto',
196 description: 'SDL user interface')
197option('sdl_image', type : 'feature', value : 'auto',
198 description: 'SDL Image support for icons')
Paolo Bonzini90835c22020-11-17 14:22:24 +0100199option('seccomp', type : 'feature', value : 'auto',
200 description: 'seccomp support')
Paolo Bonzini5f364c52021-06-03 11:15:26 +0200201option('smartcard', type : 'feature', value : 'auto',
202 description: 'CA smartcard emulation support')
Paolo Bonzini241611e2020-11-17 13:32:34 +0100203option('snappy', type : 'feature', value : 'auto',
204 description: 'snappy compression support')
Marc-André Lureau3f0a5d52021-10-07 15:08:23 +0200205option('spice', type : 'feature', value : 'auto',
206 description: 'Spice server support')
207option('spice_protocol', type : 'feature', value : 'auto',
208 description: 'Spice protocol support')
Paolo Bonzinicb572712020-09-01 01:59:23 -0400209option('u2f', type : 'feature', value : 'auto',
210 description: 'U2F emulation support')
Hongren (Zenithal) Zheng8caef852022-05-19 20:38:57 +0800211option('canokey', type : 'feature', value : 'auto',
212 description: 'CanoKey support')
Paolo Bonzini18f31e62021-06-03 11:15:26 +0200213option('usb_redir', type : 'feature', value : 'auto',
214 description: 'libusbredir support')
Thomas Hutheea94532021-10-28 20:59:08 +0200215option('l2tpv3', type : 'feature', value : 'auto',
216 description: 'l2tpv3 network backend support')
Paolo Bonzini837b84b2021-10-07 15:08:22 +0200217option('netmap', type : 'feature', value : 'auto',
218 description: 'netmap network backend support')
Thomas Huth58902582022-04-08 18:20:47 +0200219option('slirp', type: 'feature', value: 'auto',
220 description: 'libslirp user mode network backend support')
Paolo Bonzinie1723992021-10-07 15:08:21 +0200221option('vde', type : 'feature', value : 'auto',
222 description: 'vde network backend support')
Vladislav Yaroshchuke2c1d782022-03-17 20:28:33 +0300223option('vmnet', type : 'feature', value : 'auto',
224 description: 'vmnet.framework network backend support')
Paolo Bonzini587d59d2021-06-03 11:31:35 +0200225option('virglrenderer', type : 'feature', value : 'auto',
226 description: 'virgl rendering support')
Kshitij Suri95f85102022-04-08 07:13:34 +0000227option('png', type : 'feature', value : 'auto',
228 description: 'PNG support with libpng')
Thomas Huthc1de5852021-09-03 10:13:55 +0200229option('vnc', type : 'feature', value : 'auto',
Paolo Bonzinicb572712020-09-01 01:59:23 -0400230 description: 'VNC server')
231option('vnc_jpeg', type : 'feature', value : 'auto',
232 description: 'JPEG lossy compression for VNC server')
Paolo Bonzinicb572712020-09-01 01:59:23 -0400233option('vnc_sasl', type : 'feature', value : 'auto',
234 description: 'SASL authentication for VNC server')
Paolo Bonzinic23d7b42021-06-03 11:31:35 +0200235option('vte', type : 'feature', value : 'auto',
236 description: 'vte support for the gtk UI')
Claudio Fontana29e0bff2022-11-21 14:55:38 +0100237
238# GTK Clipboard implementation is disabled by default, since it may cause hangs
239# of the guest VCPUs. See gitlab issue 1150:
240# https://gitlab.com/qemu-project/qemu/-/issues/1150
241
242option('gtk_clipboard', type: 'feature', value : 'disabled',
243 description: 'clipboard support for the gtk UI (EXPERIMENTAL, MAY HANG)')
Paolo Bonzinicb572712020-09-01 01:59:23 -0400244option('xkbcommon', type : 'feature', value : 'auto',
245 description: 'xkbcommon support')
Paolo Bonzinib1def332020-11-17 13:37:39 +0100246option('zstd', type : 'feature', value : 'auto',
247 description: 'zstd compression support')
Max Reitza484a712020-10-27 20:05:41 +0100248option('fuse', type: 'feature', value: 'auto',
249 description: 'FUSE block device export')
Max Reitzdf4ea702020-10-27 20:05:46 +0100250option('fuse_lseek', type : 'feature', value : 'auto',
251 description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports')
Richard Henderson8b18cdb2020-09-13 12:19:25 -0700252
Paolo Bonzini9c29b742021-10-07 15:08:14 +0200253option('trace_backends', type: 'array', value: ['log'],
254 choices: ['dtrace', 'ftrace', 'log', 'nop', 'simple', 'syslog', 'ust'],
255 description: 'Set available tracing backends')
256
Paolo Bonzini87430d52021-10-07 15:06:09 +0200257option('alsa', type: 'feature', value: 'auto',
258 description: 'ALSA sound support')
259option('coreaudio', type: 'feature', value: 'auto',
260 description: 'CoreAudio sound support')
261option('dsound', type: 'feature', value: 'auto',
262 description: 'DirectSound sound support')
263option('jack', type: 'feature', value: 'auto',
264 description: 'JACK sound support')
265option('oss', type: 'feature', value: 'auto',
266 description: 'OSS sound support')
267option('pa', type: 'feature', value: 'auto',
268 description: 'PulseAudio sound support')
Dorinda Basseyc2d3d1c2023-04-17 12:56:54 +0200269option('pipewire', type: 'feature', value: 'auto',
270 description: 'Pipewire sound support')
Alexandre Ratchov663df1c2022-09-07 15:23:42 +0200271option('sndio', type: 'feature', value: 'auto',
272 description: 'sndio sound support')
Paolo Bonzini87430d52021-10-07 15:06:09 +0200273
Paolo Bonzini2df89d52022-04-20 17:34:07 +0200274option('vhost_kernel', type: 'feature', value: 'auto',
275 description: 'vhost kernel backend support')
276option('vhost_net', type: 'feature', value: 'auto',
277 description: 'vhost-net kernel acceleration support')
278option('vhost_user', type: 'feature', value: 'auto',
279 description: 'vhost-user backend support')
280option('vhost_crypto', type: 'feature', value: 'auto',
281 description: 'vhost-user crypto backend support')
282option('vhost_vdpa', type: 'feature', value: 'auto',
283 description: 'vhost-vdpa kernel backend support')
Paolo Bonzini69202b42020-11-17 14:46:21 +0100284option('vhost_user_blk_server', type: 'feature', value: 'auto',
285 description: 'build vhost-user-blk server')
286option('virtfs', type: 'feature', value: 'auto',
287 description: 'virtio-9p support')
Peter Foley1a67e072023-05-03 09:07:56 -0400288option('virtfs_proxy_helper', type: 'feature', value: 'auto',
289 description: 'virtio-9p proxy helper support')
Xie Yongjia6caeee2022-05-23 16:46:08 +0800290option('libvduse', type: 'feature', value: 'auto',
291 description: 'build VDUSE Library')
Xie Yongji2a2359b2022-05-23 16:46:09 +0800292option('vduse_blk_export', type: 'feature', value: 'auto',
293 description: 'VDUSE block export support')
Paolo Bonzini69202b42020-11-17 14:46:21 +0100294
Thomas Huth83602082022-05-16 16:58:23 +0200295option('capstone', type: 'feature', value: 'auto',
Richard Henderson8b18cdb2020-09-13 12:19:25 -0700296 description: 'Whether and how to find the capstone library')
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200297option('fdt', type: 'combo', value: 'auto',
298 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
299 description: 'Whether and how to find the libfdt library')
Richard W.M. Jones3d212b42021-11-15 14:29:43 -0600300
301option('selinux', type: 'feature', value: 'auto',
302 description: 'SELinux support in qemu-nbd')
Paolo Bonzini406523f2021-10-13 11:43:54 +0200303option('live_block_migration', type: 'feature', value: 'auto',
304 description: 'block migration in the main migration stream')
305option('replication', type: 'feature', value: 'auto',
306 description: 'replication support')
Vladimir Sementsov-Ogievskiy6c1e3902023-05-15 16:06:38 +0300307option('colo_proxy', type: 'feature', value: 'auto',
308 description: 'colo-proxy support')
Paolo Bonzinied793c22021-10-13 11:42:25 +0200309option('bochs', type: 'feature', value: 'auto',
310 description: 'bochs image format support')
311option('cloop', type: 'feature', value: 'auto',
312 description: 'cloop image format support')
313option('dmg', type: 'feature', value: 'auto',
314 description: 'dmg image format support')
315option('qcow1', type: 'feature', value: 'auto',
316 description: 'qcow1 image format support')
317option('vdi', type: 'feature', value: 'auto',
318 description: 'vdi image format support')
Vladimir Sementsov-Ogievskiy11cea422023-04-21 12:27:58 +0300319option('vhdx', type: 'feature', value: 'auto',
320 description: 'vhdx image format support')
321option('vmdk', type: 'feature', value: 'auto',
322 description: 'vmdk image format support')
323option('vpc', type: 'feature', value: 'auto',
324 description: 'vpc image format support')
Paolo Bonzinied793c22021-10-13 11:42:25 +0200325option('vvfat', type: 'feature', value: 'auto',
326 description: 'vvfat image format support')
327option('qed', type: 'feature', value: 'auto',
328 description: 'qed image format support')
329option('parallels', type: 'feature', value: 'auto',
330 description: 'parallels image format support')
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200331option('block_drv_whitelist_in_tools', type: 'boolean', value: false,
332 description: 'use block whitelist also in tools instead of only QEMU')
333option('rng_none', type: 'boolean', value: false,
334 description: 'dummy RNG, avoid using /dev/(u)random and getrandom()')
Paolo Bonzini728c0a22021-10-13 11:52:03 +0200335option('coroutine_pool', type: 'boolean', value: true,
336 description: 'coroutine freelist (better performance)')
Stefan Hajnoczi58a2e3f2023-05-01 13:34:43 -0400337option('debug_graph_lock', type: 'boolean', value: false,
338 description: 'graph lock debugging support')
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200339option('debug_mutex', type: 'boolean', value: false,
340 description: 'mutex debugging support')
Paolo Bonzini728c0a22021-10-13 11:52:03 +0200341option('debug_stack_usage', type: 'boolean', value: false,
342 description: 'measure coroutine stack usage')
Thomas Huth0f220122023-04-17 15:00:37 +0200343option('qom_cast_debug', type: 'boolean', value: true,
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200344 description: 'cast debugging support')
345option('gprof', type: 'boolean', value: false,
Alex Bennéebb9ecae2023-01-31 09:42:23 +0000346 description: 'QEMU profiling with gprof',
347 deprecated: true)
Paolo Bonzini35acbb32021-10-13 13:43:36 +0200348option('slirp_smbd', type : 'feature', value : 'auto',
349 description: 'use smbd (at path --smbd=*) in slirp networking')
Alessandro Di Federico7c19dcc2022-09-23 19:38:27 +0200350
351option('hexagon_idef_parser', type : 'boolean', value : true,
352 description: 'use idef-parser to automatically generate TCG code for the Hexagon frontend')