blob: 02b446013ac0f2a8dfd5c1799d0c7d5a0a4d612c [file] [log] [blame]
Marc-André Lureauab4c0992020-08-26 15:04:16 +04001option('qemu_suffix', type : 'string', value: 'qemu',
Marc-André Lureau73f3aa32020-08-26 15:04:15 +04002 description: 'Suffix for QEMU data/modules/config directories (can be empty)')
Marc-André Lureau491e74c2020-08-26 15:04:17 +04003option('docdir', type : 'string', value : 'doc',
4 description: 'Base directory for documentation installation (can be empty)')
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04005option('qemu_firmwarepath', type : 'string', value : '',
6 description: 'search PATH for firmware files')
Yonggang Luoe3667662020-10-16 06:06:25 +08007option('sphinx_build', type : 'string', value : '',
8 description: 'Use specified sphinx-build [$sphinx_build] for building document (default to be empty)')
Paolo Bonzinicb572712020-09-01 01:59:23 -04009
Yonggang Luoe3667662020-10-16 06:06:25 +080010option('docs', type : 'feature', value : 'auto',
11 description: 'Documentations build support')
Paolo Bonzinicb572712020-09-01 01:59:23 -040012option('gettext', type : 'boolean', value : true,
13 description: 'Localization of the GTK+ user interface')
Paolo Bonzinideb62372020-09-01 07:51:16 -040014option('sparse', type : 'feature', value : 'auto',
15 description: 'sparse checker')
Paolo Bonzinicb572712020-09-01 01:59:23 -040016
Paolo Bonziniaa087962020-09-01 11:15:30 -040017option('malloc_trim', type : 'feature', value : 'auto',
18 description: 'enable libc malloc_trim() for memory optimization')
19option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'],
20 value: 'system', description: 'choose memory allocator to use')
21
Paolo Bonzini1badb702020-09-18 04:57:25 -040022option('kvm', type: 'feature', value: 'auto',
23 description: 'KVM acceleration support')
24option('hax', type: 'feature', value: 'auto',
25 description: 'HAX acceleration support')
26option('whpx', type: 'feature', value: 'auto',
27 description: 'WHPX acceleration support')
28option('hvf', type: 'feature', value: 'auto',
29 description: 'HVF acceleration support')
30option('xen', type: 'feature', value: 'auto',
31 description: 'Xen backend support')
32option('xen_pci_passthrough', type: 'feature', value: 'auto',
33 description: 'Xen PCI passthrough support')
34option('tcg', type: 'feature', value: 'auto',
35 description: 'TCG support')
36
Paolo Bonzinib4e312e2020-09-01 11:28:59 -040037option('cocoa', type : 'feature', value : 'auto',
38 description: 'Cocoa user interface (macOS only)')
Paolo Bonzini6ec0e152020-09-16 18:07:29 +020039option('mpath', type : 'feature', value : 'auto',
40 description: 'Multipath persistent reservation passthrough')
Yonggang Luo5285e592020-10-13 07:43:48 +080041option('iconv', type : 'feature', value : 'auto',
42 description: 'Font glyph conversion support')
43option('curses', type : 'feature', value : 'auto',
44 description: 'curses UI')
Paolo Bonzini5c530152020-10-15 06:09:27 -040045option('libudev', type : 'feature', value : 'auto',
46 description: 'Use libudev to enumerate host devices')
Paolo Bonzinicb572712020-09-01 01:59:23 -040047option('sdl', type : 'feature', value : 'auto',
48 description: 'SDL user interface')
49option('sdl_image', type : 'feature', value : 'auto',
50 description: 'SDL Image support for icons')
51option('u2f', type : 'feature', value : 'auto',
52 description: 'U2F emulation support')
53option('vnc', type : 'feature', value : 'enabled',
54 description: 'VNC server')
55option('vnc_jpeg', type : 'feature', value : 'auto',
56 description: 'JPEG lossy compression for VNC server')
57option('vnc_png', type : 'feature', value : 'auto',
58 description: 'PNG compression for VNC server')
59option('vnc_sasl', type : 'feature', value : 'auto',
60 description: 'SASL authentication for VNC server')
61option('xkbcommon', type : 'feature', value : 'auto',
62 description: 'xkbcommon support')
Richard Henderson8b18cdb2020-09-13 12:19:25 -070063
64option('capstone', type: 'combo', value: 'auto',
65 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
66 description: 'Whether and how to find the capstone library')
Paolo Bonzini4d34a862020-10-05 11:31:15 +020067option('slirp', type: 'combo', value: 'auto',
68 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
69 description: 'Whether and how to find the slirp library')
Paolo Bonzinifbb41212020-10-05 11:31:15 +020070option('fdt', type: 'combo', value: 'auto',
71 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
72 description: 'Whether and how to find the libfdt library')