1option('qemu_suffix', type : 'string', value: 'qemu', 2 description: 'Suffix for QEMU data/modules/config directories (can be empty)') 3option('docdir', type : 'string', value : 'doc', 4 description: 'Base directory for documentation installation (can be empty)') 5 6option('gettext', type : 'boolean', value : true, 7 description: 'Localization of the GTK+ user interface') 8option('sparse', type : 'feature', value : 'auto', 9 description: 'sparse checker') 10 11option('malloc_trim', type : 'feature', value : 'auto', 12 description: 'enable libc malloc_trim() for memory optimization') 13option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'], 14 value: 'system', description: 'choose memory allocator to use') 15 16option('kvm', type: 'feature', value: 'auto', 17 description: 'KVM acceleration support') 18option('hax', type: 'feature', value: 'auto', 19 description: 'HAX acceleration support') 20option('whpx', type: 'feature', value: 'auto', 21 description: 'WHPX acceleration support') 22option('hvf', type: 'feature', value: 'auto', 23 description: 'HVF acceleration support') 24option('xen', type: 'feature', value: 'auto', 25 description: 'Xen backend support') 26option('xen_pci_passthrough', type: 'feature', value: 'auto', 27 description: 'Xen PCI passthrough support') 28option('tcg', type: 'feature', value: 'auto', 29 description: 'TCG support') 30 31option('cocoa', type : 'feature', value : 'auto', 32 description: 'Cocoa user interface (macOS only)') 33option('mpath', type : 'feature', value : 'auto', 34 description: 'Multipath persistent reservation passthrough') 35option('iconv', type : 'feature', value : 'auto', 36 description: 'Font glyph conversion support') 37option('curses', type : 'feature', value : 'auto', 38 description: 'curses UI') 39option('sdl', type : 'feature', value : 'auto', 40 description: 'SDL user interface') 41option('sdl_image', type : 'feature', value : 'auto', 42 description: 'SDL Image support for icons') 43option('u2f', type : 'feature', value : 'auto', 44 description: 'U2F emulation support') 45option('vnc', type : 'feature', value : 'enabled', 46 description: 'VNC server') 47option('vnc_jpeg', type : 'feature', value : 'auto', 48 description: 'JPEG lossy compression for VNC server') 49option('vnc_png', type : 'feature', value : 'auto', 50 description: 'PNG compression for VNC server') 51option('vnc_sasl', type : 'feature', value : 'auto', 52 description: 'SASL authentication for VNC server') 53option('xkbcommon', type : 'feature', value : 'auto', 54 description: 'xkbcommon support') 55 56option('capstone', type: 'combo', value: 'auto', 57 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 58 description: 'Whether and how to find the capstone library') 59option('slirp', type: 'combo', value: 'auto', 60 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 61 description: 'Whether and how to find the slirp library') 62option('fdt', type: 'combo', value: 'auto', 63 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 64 description: 'Whether and how to find the libfdt library') 65