blob: 4535bc4dc22b34a5686ba8948e97f78a48301094 [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')
Alex Bennée0e8e77d2020-12-10 19:04:12 +000012option('gettext', type : 'feature', value : 'auto',
Paolo Bonzinicb572712020-09-01 01:59:23 -040013 description: 'Localization of the GTK+ user interface')
Paolo Bonzinic8d54502020-10-16 03:32:52 -040014option('install_blobs', type : 'boolean', value : true,
15 description: 'install provided firmware blobs')
Paolo Bonzinideb62372020-09-01 07:51:16 -040016option('sparse', type : 'feature', value : 'auto',
17 description: 'sparse checker')
Paolo Bonzinicb572712020-09-01 01:59:23 -040018
Paolo Bonziniaa087962020-09-01 11:15:30 -040019option('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
Paolo Bonzini1badb702020-09-18 04:57:25 -040024option('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')
Daniele Buono9e62ba42020-12-04 18:06:14 -050038option('cfi', type: 'boolean', value: 'false',
39 description: 'Control-Flow Integrity (CFI)')
40option('cfi_debug', type: 'boolean', value: 'false',
41 description: 'Verbose errors in case of CFI violation')
Paolo Bonzini1badb702020-09-18 04:57:25 -040042
Paolo Bonzini8c6d4ff2020-11-17 13:02:17 +010043option('brlapi', type : 'feature', value : 'auto',
44 description: 'brlapi character device driver')
Paolo Bonzini29ba6112020-11-17 13:07:52 +010045option('bzip2', type : 'feature', value : 'auto',
46 description: 'bzip2 support for DMG images')
Paolo Bonzinib4e312e2020-09-01 11:28:59 -040047option('cocoa', type : 'feature', value : 'auto',
48 description: 'Cocoa user interface (macOS only)')
Paolo Bonzinif9cd86f2020-11-17 12:43:15 +010049option('curl', type : 'feature', value : 'auto',
50 description: 'CURL block device driver')
Paolo Bonzini08821ca2020-11-17 13:01:26 +010051option('glusterfs', type : 'feature', value : 'auto',
52 description: 'Glusterfs block device driver')
Paolo Bonzini9db405a2020-11-17 13:11:25 +010053option('libiscsi', type : 'feature', value : 'auto',
54 description: 'libiscsi userspace initiator')
Paolo Bonzini30045c02020-11-17 13:11:25 +010055option('libnfs', type : 'feature', value : 'auto',
56 description: 'libnfs block device driver')
Paolo Bonzini6ec0e152020-09-16 18:07:29 +020057option('mpath', type : 'feature', value : 'auto',
58 description: 'Multipath persistent reservation passthrough')
Yonggang Luo5285e592020-10-13 07:43:48 +080059option('iconv', type : 'feature', value : 'auto',
60 description: 'Font glyph conversion support')
61option('curses', type : 'feature', value : 'auto',
62 description: 'curses UI')
Paolo Bonzini5c530152020-10-15 06:09:27 -040063option('libudev', type : 'feature', value : 'auto',
64 description: 'Use libudev to enumerate host devices')
Paolo Bonzinicb572712020-09-01 01:59:23 -040065option('sdl', type : 'feature', value : 'auto',
66 description: 'SDL user interface')
67option('sdl_image', type : 'feature', value : 'auto',
68 description: 'SDL Image support for icons')
69option('u2f', type : 'feature', value : 'auto',
70 description: 'U2F emulation support')
71option('vnc', type : 'feature', value : 'enabled',
72 description: 'VNC server')
73option('vnc_jpeg', type : 'feature', value : 'auto',
74 description: 'JPEG lossy compression for VNC server')
75option('vnc_png', type : 'feature', value : 'auto',
76 description: 'PNG compression for VNC server')
77option('vnc_sasl', type : 'feature', value : 'auto',
78 description: 'SASL authentication for VNC server')
79option('xkbcommon', type : 'feature', value : 'auto',
80 description: 'xkbcommon support')
Misono Tomohirocece1162020-10-08 19:31:33 +090081option('virtiofsd', type: 'feature', value: 'auto',
82 description: 'build virtiofs daemon (virtiofsd)')
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +000083option('vhost_user_blk_server', type: 'feature', value: 'auto',
84 description: 'build vhost-user-blk server')
Max Reitza484a712020-10-27 20:05:41 +010085option('fuse', type: 'feature', value: 'auto',
86 description: 'FUSE block device export')
Max Reitzdf4ea702020-10-27 20:05:46 +010087option('fuse_lseek', type : 'feature', value : 'auto',
88 description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports')
Richard Henderson8b18cdb2020-09-13 12:19:25 -070089
90option('capstone', type: 'combo', value: 'auto',
91 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
92 description: 'Whether and how to find the capstone library')
Paolo Bonzini4d34a862020-10-05 11:31:15 +020093option('slirp', type: 'combo', value: 'auto',
94 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
95 description: 'Whether and how to find the slirp library')
Paolo Bonzinifbb41212020-10-05 11:31:15 +020096option('fdt', type: 'combo', value: 'auto',
97 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
98 description: 'Whether and how to find the libfdt library')