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