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)') 5option('qemu_firmwarepath', type : 'string', value : '', 6 description: 'search PATH for firmware files') 7option('sphinx_build', type : 'string', value : '', 8 description: 'Use specified sphinx-build [$sphinx_build] for building document (default to be empty)') 9 10option('docs', type : 'feature', value : 'auto', 11 description: 'Documentations build support') 12option('gettext', type : 'boolean', value : true, 13 description: 'Localization of the GTK+ user interface') 14option('install_blobs', type : 'boolean', value : true, 15 description: 'install provided firmware blobs') 16option('sparse', type : 'feature', value : 'auto', 17 description: 'sparse checker') 18 19option('malloc_trim', type : 'feature', value : 'auto', 20 description: 'enable libc malloc_trim() for memory optimization') 21option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'], 22 value: 'system', description: 'choose memory allocator to use') 23 24option('kvm', type: 'feature', value: 'auto', 25 description: 'KVM acceleration support') 26option('hax', type: 'feature', value: 'auto', 27 description: 'HAX acceleration support') 28option('whpx', type: 'feature', value: 'auto', 29 description: 'WHPX acceleration support') 30option('hvf', type: 'feature', value: 'auto', 31 description: 'HVF acceleration support') 32option('xen', type: 'feature', value: 'auto', 33 description: 'Xen backend support') 34option('xen_pci_passthrough', type: 'feature', value: 'auto', 35 description: 'Xen PCI passthrough support') 36option('tcg', type: 'feature', value: 'auto', 37 description: 'TCG support') 38 39option('cocoa', type : 'feature', value : 'auto', 40 description: 'Cocoa user interface (macOS only)') 41option('mpath', type : 'feature', value : 'auto', 42 description: 'Multipath persistent reservation passthrough') 43option('iconv', type : 'feature', value : 'auto', 44 description: 'Font glyph conversion support') 45option('curses', type : 'feature', value : 'auto', 46 description: 'curses UI') 47option('libudev', type : 'feature', value : 'auto', 48 description: 'Use libudev to enumerate host devices') 49option('sdl', type : 'feature', value : 'auto', 50 description: 'SDL user interface') 51option('sdl_image', type : 'feature', value : 'auto', 52 description: 'SDL Image support for icons') 53option('u2f', type : 'feature', value : 'auto', 54 description: 'U2F emulation support') 55option('vnc', type : 'feature', value : 'enabled', 56 description: 'VNC server') 57option('vnc_jpeg', type : 'feature', value : 'auto', 58 description: 'JPEG lossy compression for VNC server') 59option('vnc_png', type : 'feature', value : 'auto', 60 description: 'PNG compression for VNC server') 61option('vnc_sasl', type : 'feature', value : 'auto', 62 description: 'SASL authentication for VNC server') 63option('xkbcommon', type : 'feature', value : 'auto', 64 description: 'xkbcommon support') 65option('virtiofsd', type: 'feature', value: 'auto', 66 description: 'build virtiofs daemon (virtiofsd)') 67 68option('capstone', type: 'combo', value: 'auto', 69 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 70 description: 'Whether and how to find the capstone library') 71option('slirp', type: 'combo', value: 'auto', 72 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 73 description: 'Whether and how to find the slirp library') 74option('fdt', type: 'combo', value: 'auto', 75 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 76 description: 'Whether and how to find the libfdt library') 77