blob: 40563e3c248df1b49653a154669457d5d80bc822 [file] [log] [blame]
Paolo Bonzini654d6b02021-02-09 14:59:26 +01001project('qemu', ['c'], meson_version: '>=0.58.2',
2 default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3 'b_staticpic=false'],
4 version: files('VERSION'))
Paolo Bonzinia5665052019-06-10 12:05:14 +02005
6not_found = dependency('', required: false)
Paolo Bonzini654d6b02021-02-09 14:59:26 +01007keyval = import('keyval')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04008ss = import('sourceset')
Richard Henderson8b18cdb2020-09-13 12:19:25 -07009fs = import('fs')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -040010
Paolo Bonzinice1c1e72020-01-28 16:41:44 +010011sh = find_program('sh')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -040012cc = meson.get_compiler('c')
Paolo Bonzinia5665052019-06-10 12:05:14 +020013config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
Marc-André Lureau3154fee2019-08-29 22:07:01 +040014enable_modules = 'CONFIG_MODULES' in config_host
Paolo Bonzini35be72b2020-02-06 14:17:15 +010015enable_static = 'CONFIG_STATIC' in config_host
Yonggang Luoe3667662020-10-16 06:06:25 +080016
Paolo Bonzinid7dedf42021-01-26 11:15:33 +010017# Allow both shared and static libraries unless --enable-static
18static_kwargs = enable_static ? {'static': true} : {}
19
Yonggang Luoe3667662020-10-16 06:06:25 +080020# Temporary directory used for files created while
21# configure runs. Since it is in the build directory
22# we can safely blow away any previous version of it
23# (and we need not jump through hoops to try to delete
24# it when configure exits.)
25tmpdir = meson.current_build_dir() / 'meson-private/temp'
Marc-André Lureau8fe11232020-09-11 14:42:48 +020026
27if get_option('qemu_suffix').startswith('/')
28 error('qemu_suffix cannot start with a /')
29endif
30
Paolo Bonzini16bf7a32020-10-16 03:19:14 -040031qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix')
Marc-André Lureauab4c0992020-08-26 15:04:16 +040032qemu_datadir = get_option('datadir') / get_option('qemu_suffix')
Marc-André Lureau491e74c2020-08-26 15:04:17 +040033qemu_docdir = get_option('docdir') / get_option('qemu_suffix')
Paolo Bonzini16bf7a32020-10-16 03:19:14 -040034qemu_moddir = get_option('libdir') / get_option('qemu_suffix')
35
36qemu_desktopdir = get_option('datadir') / 'applications'
37qemu_icondir = get_option('datadir') / 'icons'
38
Paolo Bonzini859aef02020-08-04 18:14:26 +020039config_host_data = configuration_data()
40genh = []
Paolo Bonzinia5665052019-06-10 12:05:14 +020041
Paolo Bonzini760e4322020-08-26 08:09:48 +020042target_dirs = config_host['TARGET_DIRS'].split()
43have_user = false
44have_system = false
45foreach target : target_dirs
46 have_user = have_user or target.endswith('-user')
47 have_system = have_system or target.endswith('-softmmu')
48endforeach
49have_tools = 'CONFIG_TOOLS' in config_host
50have_block = have_system or have_tools
51
Paolo Bonzini201e8ed2020-09-01 07:45:54 -040052python = import('python').find_installation()
53
54supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
Sergei Trofimovich61256732020-10-12 18:57:19 +010055supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
Paolo Bonzini201e8ed2020-09-01 07:45:54 -040056 'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64']
57
58cpu = host_machine.cpu_family()
59targetos = host_machine.system()
60
Paolo Bonzini8a199802020-09-18 05:37:01 -040061if cpu in ['x86', 'x86_64']
62 kvm_targets = ['i386-softmmu', 'x86_64-softmmu']
63elif cpu == 'aarch64'
64 kvm_targets = ['aarch64-softmmu']
65elif cpu == 's390x'
66 kvm_targets = ['s390x-softmmu']
67elif cpu in ['ppc', 'ppc64']
68 kvm_targets = ['ppc-softmmu', 'ppc64-softmmu']
Huacai Chenfbc58842020-10-07 16:39:28 +080069elif cpu in ['mips', 'mips64']
70 kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu']
Paolo Bonzini8a199802020-09-18 05:37:01 -040071else
72 kvm_targets = []
73endif
74
75accelerator_targets = { 'CONFIG_KVM': kvm_targets }
Alexander Graf844a06b2021-09-16 17:54:02 +020076
77if cpu in ['aarch64']
78 accelerator_targets += {
79 'CONFIG_HVF': ['aarch64-softmmu']
80 }
81endif
82
Alex Bennée0c3e41d2020-11-10 19:23:09 +000083if cpu in ['x86', 'x86_64', 'arm', 'aarch64']
Marc-André Lureau2a2d51b2021-09-14 16:30:45 +040084 # i386 emulator provides xenpv machine type for multiple architectures
Alex Bennée0c3e41d2020-11-10 19:23:09 +000085 accelerator_targets += {
86 'CONFIG_XEN': ['i386-softmmu', 'x86_64-softmmu'],
87 }
88endif
Paolo Bonzini8a199802020-09-18 05:37:01 -040089if cpu in ['x86', 'x86_64']
90 accelerator_targets += {
91 'CONFIG_HAX': ['i386-softmmu', 'x86_64-softmmu'],
Paolo Bonzini8a199802020-09-18 05:37:01 -040092 'CONFIG_HVF': ['x86_64-softmmu'],
Reinoud Zandijk74a414a2021-04-02 22:25:32 +020093 'CONFIG_NVMM': ['i386-softmmu', 'x86_64-softmmu'],
Paolo Bonzini8a199802020-09-18 05:37:01 -040094 'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'],
95 }
96endif
97
Paolo Bonzinia1b176f2021-07-12 14:22:08 +020098modular_tcg = []
99# Darwin does not support references to thread-local variables in modules
100if targetos != 'darwin'
101 modular_tcg = ['i386-softmmu', 'x86_64-softmmu']
102endif
Gerd Hoffmanndae0ec12021-06-24 12:38:31 +0200103
Philippe Mathieu-Daudéeae9a1d2021-01-14 18:45:08 +0100104edk2_targets = [ 'arm-softmmu', 'aarch64-softmmu', 'i386-softmmu', 'x86_64-softmmu' ]
Paolo Bonzinie49c0ef2021-09-23 06:55:28 -0400105unpack_edk2_blobs = false
106foreach target : edk2_targets
107 if target in target_dirs
108 bzip2 = find_program('bzip2', required: get_option('install_blobs'))
109 unpack_edk2_blobs = bzip2.found()
110 break
111 endif
112endforeach
Philippe Mathieu-Daudé45b545d2021-01-14 18:45:09 +0100113
Paolo Bonzini9c29b742021-10-07 15:08:14 +0200114dtrace = not_found
115stap = not_found
116if 'dtrace' in get_option('trace_backends')
117 dtrace = find_program('dtrace', required: true)
118 stap = find_program('stap', required: false)
119 if stap.found()
120 # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol
121 # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility
122 # instead. QEMU --enable-modules depends on this because the SystemTap
123 # semaphores are linked into the main binary and not the module's shared
124 # object.
125 add_global_arguments('-DSTAP_SDT_V2',
126 native: false, language: ['c', 'cpp', 'objc'])
127 endif
128endif
129
Paolo Bonzini201e8ed2020-09-01 07:45:54 -0400130##################
131# Compiler flags #
132##################
133
Alexander Bulekovff9ed622020-09-09 18:05:16 -0400134# Specify linker-script with add_project_link_arguments so that it is not placed
135# within a linker --start-group/--end-group pair
Paolo Bonzini537b7242021-10-07 15:08:12 +0200136if get_option('fuzzing')
137 add_project_link_arguments(['-Wl,-T,',
138 (meson.current_source_dir() / 'tests/qtest/fuzz/fork_fuzz.ld')],
139 native: false, language: ['c', 'cpp', 'objc'])
140
141 # Specify a filter to only instrument code that is directly related to
142 # virtual-devices.
143 configure_file(output: 'instrumentation-filter',
144 input: 'scripts/oss-fuzz/instrumentation-filter-template',
145 copy: true)
146 add_global_arguments(
147 cc.get_supported_arguments('-fsanitize-coverage-allowlist=instrumentation-filter'),
148 native: false, language: ['c', 'cpp', 'objc'])
149
150 if get_option('fuzzing_engine') == ''
151 # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the
152 # compiled code. To build non-fuzzer binaries with --enable-fuzzing, link
153 # everything with fsanitize=fuzzer-no-link. Otherwise, the linker will be
154 # unable to bind the fuzzer-related callbacks added by instrumentation.
155 add_global_arguments('-fsanitize=fuzzer-no-link',
156 native: false, language: ['c', 'cpp', 'objc'])
157 add_global_link_arguments('-fsanitize=fuzzer-no-link',
Alexander Bulekovff9ed622020-09-09 18:05:16 -0400158 native: false, language: ['c', 'cpp', 'objc'])
Paolo Bonzini537b7242021-10-07 15:08:12 +0200159 # For the actual fuzzer binaries, we need to link against the libfuzzer
160 # library. They need to be configurable, to support OSS-Fuzz
161 fuzz_exe_ldflags = ['-fsanitize=fuzzer']
162 else
163 # LIB_FUZZING_ENGINE was set; assume we are running on OSS-Fuzz, and
164 # the needed CFLAGS have already been provided
165 fuzz_exe_ldflags = get_option('fuzzing_engine').split()
166 endif
Alexander Bulekovff9ed622020-09-09 18:05:16 -0400167endif
168
Marc-André Lureau5fc06172021-01-14 16:56:02 +0400169add_global_arguments(config_host['QEMU_CFLAGS'].split(),
170 native: false, language: ['c', 'objc'])
171add_global_arguments(config_host['QEMU_CXXFLAGS'].split(),
172 native: false, language: 'cpp')
173add_global_link_arguments(config_host['QEMU_LDFLAGS'].split(),
174 native: false, language: ['c', 'cpp', 'objc'])
Paolo Bonzinia5665052019-06-10 12:05:14 +0200175
Paolo Bonzini1e6e6162020-10-14 08:45:42 -0400176if targetos == 'linux'
177 add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers',
178 '-isystem', 'linux-headers',
179 language: ['c', 'cpp'])
180endif
181
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100182add_project_arguments('-iquote', '.',
Paolo Bonzini1e6e6162020-10-14 08:45:42 -0400183 '-iquote', meson.current_source_dir(),
Paolo Bonzini1e6e6162020-10-14 08:45:42 -0400184 '-iquote', meson.current_source_dir() / 'include',
185 '-iquote', meson.current_source_dir() / 'disas/libvixl',
186 language: ['c', 'cpp', 'objc'])
Alexander Bulekovc46f76d2020-09-02 13:36:50 -0400187
Marc-André Lureaufc929892019-07-13 01:47:54 +0400188link_language = meson.get_external_property('link_language', 'cpp')
189if link_language == 'cpp'
190 add_languages('cpp', required: true, native: false)
191endif
Paolo Bonzinia5665052019-06-10 12:05:14 +0200192if host_machine.system() == 'darwin'
193 add_languages('objc', required: false, native: false)
194endif
195
Paolo Bonzinideb62372020-09-01 07:51:16 -0400196sparse = find_program('cgcc', required: get_option('sparse'))
197if sparse.found()
Paolo Bonzini968b4db2020-02-03 14:45:33 +0100198 run_target('sparse',
199 command: [find_program('scripts/check_sparse.py'),
Paolo Bonzinideb62372020-09-01 07:51:16 -0400200 'compile_commands.json', sparse.full_path(), '-Wbitwise',
201 '-Wno-transparent-union', '-Wno-old-initializer',
202 '-Wno-non-pointer-null'])
Paolo Bonzini968b4db2020-02-03 14:45:33 +0100203endif
204
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200205###########################################
206# Target-specific checks and dependencies #
207###########################################
208
Paolo Bonzini537b7242021-10-07 15:08:12 +0200209if get_option('fuzzing') and get_option('fuzzing_engine') == '' and \
210 not cc.links('''
211 #include <stdint.h>
212 #include <sys/types.h>
213 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
214 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; }
215 ''',
216 args: ['-Werror', '-fsanitize=fuzzer'])
217 error('Your compiler does not support -fsanitize=fuzzer')
218endif
219
Paolo Bonzini9c29b742021-10-07 15:08:14 +0200220if 'ftrace' in get_option('trace_backends') and targetos != 'linux'
221 error('ftrace is supported only on Linux')
222endif
223if 'syslog' in get_option('trace_backends') and not cc.compiles('''
224 #include <syslog.h>
225 int main(void) {
226 openlog("qemu", LOG_PID, LOG_DAEMON);
227 syslog(LOG_INFO, "configure");
228 return 0;
229 }''')
230 error('syslog is not supported on this system')
231endif
232
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200233if targetos != 'linux' and get_option('mpath').enabled()
234 error('Multipath is supported only on Linux')
235endif
236
Paolo Bonzini106ad1f2021-02-17 16:24:25 +0100237if targetos != 'linux' and get_option('multiprocess').enabled()
238 error('Multiprocess QEMU is supported only on Linux')
239endif
240multiprocess_allowed = targetos == 'linux' and not get_option('multiprocess').disabled()
241
Paolo Bonzini7fa1c632021-06-01 10:00:48 +0200242libm = cc.find_library('m', required: false)
Paolo Bonzini6d7c7c22021-06-03 15:01:35 +0200243threads = dependency('threads')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400244util = cc.find_library('util', required: false)
Paolo Bonzini4a963372020-08-03 16:22:28 +0200245winmm = []
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400246socket = []
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +0400247version_res = []
Marc-André Lureaud92989a2019-08-20 19:48:59 +0400248coref = []
249iokit = []
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -0400250emulator_link_args = []
Reinoud Zandijk74a414a2021-04-02 22:25:32 +0200251nvmm =not_found
Paolo Bonzini8a199802020-09-18 05:37:01 -0400252hvf = not_found
Paolo Bonzinia6305082021-10-07 15:08:15 +0200253host_dsosuf = '.so'
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400254if targetos == 'windows'
255 socket = cc.find_library('ws2_32')
Paolo Bonzini4a963372020-08-03 16:22:28 +0200256 winmm = cc.find_library('winmm')
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +0400257
258 win = import('windows')
259 version_res = win.compile_resources('version.rc',
260 depend_files: files('pc-bios/qemu-nsis.ico'),
261 include_directories: include_directories('.'))
Paolo Bonzinia6305082021-10-07 15:08:15 +0200262 host_dsosuf = '.dll'
Marc-André Lureaud92989a2019-08-20 19:48:59 +0400263elif targetos == 'darwin'
264 coref = dependency('appleframeworks', modules: 'CoreFoundation')
Joelle van Dyne14176c82021-03-15 11:03:38 -0700265 iokit = dependency('appleframeworks', modules: 'IOKit', required: false)
Paolo Bonzinia6305082021-10-07 15:08:15 +0200266 host_dsosuf = '.dylib'
Paolo Bonzinicfad62f2020-08-09 23:47:45 +0200267elif targetos == 'sunos'
268 socket = [cc.find_library('socket'),
269 cc.find_library('nsl'),
270 cc.find_library('resolv')]
271elif targetos == 'haiku'
272 socket = [cc.find_library('posix_error_mapper'),
273 cc.find_library('network'),
274 cc.find_library('bsd')]
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -0400275elif targetos == 'openbsd'
276 if not get_option('tcg').disabled() and target_dirs.length() > 0
277 # Disable OpenBSD W^X if available
278 emulator_link_args = cc.get_supported_link_arguments('-Wl,-z,wxneeded')
279 endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400280endif
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200281
Paolo Bonzini8a199802020-09-18 05:37:01 -0400282accelerators = []
283if not get_option('kvm').disabled() and targetos == 'linux'
284 accelerators += 'CONFIG_KVM'
285endif
286if not get_option('xen').disabled() and 'CONFIG_XEN_BACKEND' in config_host
287 accelerators += 'CONFIG_XEN'
288 have_xen_pci_passthrough = not get_option('xen_pci_passthrough').disabled() and targetos == 'linux'
289else
290 have_xen_pci_passthrough = false
291endif
292if not get_option('whpx').disabled() and targetos == 'windows'
Sunil Muthuswamy57e2a1f2020-10-22 00:27:55 +0000293 if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64'
Paolo Bonzini8a199802020-09-18 05:37:01 -0400294 error('WHPX requires 64-bit host')
295 elif cc.has_header('WinHvPlatform.h', required: get_option('whpx')) and \
296 cc.has_header('WinHvEmulation.h', required: get_option('whpx'))
297 accelerators += 'CONFIG_WHPX'
298 endif
299endif
300if not get_option('hvf').disabled()
301 hvf = dependency('appleframeworks', modules: 'Hypervisor',
302 required: get_option('hvf'))
303 if hvf.found()
304 accelerators += 'CONFIG_HVF'
305 endif
306endif
307if not get_option('hax').disabled()
308 if get_option('hax').enabled() or targetos in ['windows', 'darwin', 'netbsd']
309 accelerators += 'CONFIG_HAX'
310 endif
311endif
Reinoud Zandijk74a414a2021-04-02 22:25:32 +0200312if targetos == 'netbsd'
313 if cc.has_header_symbol('nvmm.h', 'nvmm_cpu_stop', required: get_option('nvmm'))
314 nvmm = cc.find_library('nvmm', required: get_option('nvmm'))
315 endif
316 if nvmm.found()
317 accelerators += 'CONFIG_NVMM'
318 endif
319endif
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100320
321tcg_arch = config_host['ARCH']
Paolo Bonzini8a199802020-09-18 05:37:01 -0400322if not get_option('tcg').disabled()
323 if cpu not in supported_cpus
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100324 if get_option('tcg_interpreter')
Philippe Mathieu-Daudé39687ac2021-01-25 15:45:29 +0100325 warning('Unsupported CPU @0@, will use TCG with TCI (experimental and slow)'.format(cpu))
Paolo Bonzini8a199802020-09-18 05:37:01 -0400326 else
327 error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
328 endif
Philippe Mathieu-Daudéfa2f7b02021-01-25 15:45:30 +0100329 elif get_option('tcg_interpreter')
330 warning('Use of the TCG interpretor is not recommended on this host')
331 warning('architecture. There is a native TCG execution backend available')
332 warning('which provides substantially better performance and reliability.')
333 warning('It is strongly recommended to remove the --enable-tcg-interpreter')
334 warning('configuration option on this architecture to use the native')
335 warning('backend.')
Paolo Bonzini8a199802020-09-18 05:37:01 -0400336 endif
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100337 if get_option('tcg_interpreter')
338 tcg_arch = 'tci'
339 elif config_host['ARCH'] == 'sparc64'
340 tcg_arch = 'sparc'
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100341 elif config_host['ARCH'] in ['x86_64', 'x32']
342 tcg_arch = 'i386'
343 elif config_host['ARCH'] == 'ppc64'
344 tcg_arch = 'ppc'
345 elif config_host['ARCH'] in ['riscv32', 'riscv64']
346 tcg_arch = 'riscv'
347 endif
348 add_project_arguments('-iquote', meson.current_source_dir() / 'tcg' / tcg_arch,
Paolo Bonzini23a77b22020-12-14 12:01:45 +0100349 language: ['c', 'cpp', 'objc'])
350
Paolo Bonzini8a199802020-09-18 05:37:01 -0400351 accelerators += 'CONFIG_TCG'
352 config_host += { 'CONFIG_TCG': 'y' }
353endif
354
355if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled()
356 error('KVM not available on this platform')
357endif
358if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled()
359 error('HVF not available on this platform')
360endif
Reinoud Zandijk74a414a2021-04-02 22:25:32 +0200361if 'CONFIG_NVMM' not in accelerators and get_option('nvmm').enabled()
362 error('NVMM not available on this platform')
363endif
Paolo Bonzini8a199802020-09-18 05:37:01 -0400364if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled()
365 error('WHPX not available on this platform')
366endif
367if not have_xen_pci_passthrough and get_option('xen_pci_passthrough').enabled()
368 if 'CONFIG_XEN' in accelerators
369 error('Xen PCI passthrough not available on this platform')
370 else
371 error('Xen PCI passthrough requested but Xen not enabled')
372 endif
373endif
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400374
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200375################
376# Dependencies #
377################
378
Paolo Bonzini215b0c22020-09-01 08:41:17 -0400379# The path to glib.h is added to all compilation commands. This was
380# grandfathered in from the QEMU Makefiles.
381add_project_arguments(config_host['GLIB_CFLAGS'].split(),
382 native: false, language: ['c', 'cpp', 'objc'])
Marc-André Lureau953d5a92020-12-15 12:03:19 +0400383glib = declare_dependency(compile_args: config_host['GLIB_CFLAGS'].split(),
384 link_args: config_host['GLIB_LIBS'].split())
385# override glib dep with the configure results (for subprojects)
386meson.override_dependency('glib-2.0', glib)
387
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400388gio = not_found
389if 'CONFIG_GIO' in config_host
390 gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(),
391 link_args: config_host['GIO_LIBS'].split())
392endif
393lttng = not_found
Paolo Bonzini9c29b742021-10-07 15:08:14 +0200394if 'ust' in get_option('trace_backends')
395 lttng = dependency('lttng-ust', required: true, method: 'pkg-config',
396 kwargs: static_kwargs)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400397endif
Paolo Bonzinib7612f42020-08-26 08:22:58 +0200398pixman = not_found
399if have_system or have_tools
400 pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8',
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100401 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzinib7612f42020-08-26 08:22:58 +0200402endif
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100403zlib = dependency('zlib', required: true, kwargs: static_kwargs)
Paolo Bonzini53c22b62021-06-03 11:31:35 +0200404
Paolo Bonziniff66f3e2021-10-07 15:08:20 +0200405libaio = not_found
406if not get_option('linux_aio').auto() or have_block
407 libaio = cc.find_library('aio', has_headers: ['libaio.h'],
408 required: get_option('linux_aio'),
409 kwargs: static_kwargs)
410endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400411linux_io_uring = not_found
Paolo Bonzini53c22b62021-06-03 11:31:35 +0200412if not get_option('linux_io_uring').auto() or have_block
413 linux_io_uring = dependency('liburing', required: get_option('linux_io_uring'),
414 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400415endif
416libxml2 = not_found
Paolo Bonzinic5b36c22021-06-03 11:31:35 +0200417if not get_option('libxml2').auto() or have_block
418 libxml2 = dependency('libxml-2.0', required: get_option('libxml2'),
419 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400420endif
421libnfs = not_found
Paolo Bonzini30045c02020-11-17 13:11:25 +0100422if not get_option('libnfs').auto() or have_block
423 libnfs = dependency('libnfs', version: '>=1.9.3',
424 required: get_option('libnfs'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100425 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400426endif
Paolo Bonzinif7f2d652020-11-17 14:45:24 +0100427
428libattr_test = '''
429 #include <stddef.h>
430 #include <sys/types.h>
431 #ifdef CONFIG_LIBATTR
432 #include <attr/xattr.h>
433 #else
434 #include <sys/xattr.h>
435 #endif
436 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }'''
437
Marc-André Lureauec0d5892019-07-15 15:04:49 +0400438libattr = not_found
Paolo Bonzinif7f2d652020-11-17 14:45:24 +0100439have_old_libattr = false
440if not get_option('attr').disabled()
441 if cc.links(libattr_test)
442 libattr = declare_dependency()
443 else
444 libattr = cc.find_library('attr', has_headers: ['attr/xattr.h'],
445 required: get_option('attr'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100446 kwargs: static_kwargs)
Paolo Bonzinif7f2d652020-11-17 14:45:24 +0100447 if libattr.found() and not \
448 cc.links(libattr_test, dependencies: libattr, args: '-DCONFIG_LIBATTR')
449 libattr = not_found
450 if get_option('attr').enabled()
451 error('could not link libattr')
452 else
453 warning('could not link libattr, disabling')
454 endif
455 else
456 have_old_libattr = libattr.found()
457 endif
458 endif
Marc-André Lureauec0d5892019-07-15 15:04:49 +0400459endif
Paolo Bonzinif7f2d652020-11-17 14:45:24 +0100460
Paolo Bonzinic1ec4942021-01-07 14:04:00 +0100461cocoa = dependency('appleframeworks', modules: 'Cocoa', required: get_option('cocoa'))
462if cocoa.found() and get_option('sdl').enabled()
463 error('Cocoa and SDL cannot be enabled at the same time')
464endif
465if cocoa.found() and get_option('gtk').enabled()
466 error('Cocoa and GTK+ cannot be enabled at the same time')
467endif
468
Paolo Bonzini3f99cf52020-02-05 09:45:39 +0100469seccomp = not_found
Paolo Bonzini90835c22020-11-17 14:22:24 +0100470if not get_option('seccomp').auto() or have_system or have_tools
471 seccomp = dependency('libseccomp', version: '>=2.3.0',
472 required: get_option('seccomp'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100473 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini3f99cf52020-02-05 09:45:39 +0100474endif
Paolo Bonzini727c8bb2020-11-17 14:46:58 +0100475
Paolo Bonzini3f99cf52020-02-05 09:45:39 +0100476libcap_ng = not_found
Paolo Bonzini727c8bb2020-11-17 14:46:58 +0100477if not get_option('cap_ng').auto() or have_system or have_tools
478 libcap_ng = cc.find_library('cap-ng', has_headers: ['cap-ng.h'],
479 required: get_option('cap_ng'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100480 kwargs: static_kwargs)
Paolo Bonzini3f99cf52020-02-05 09:45:39 +0100481endif
Paolo Bonzini727c8bb2020-11-17 14:46:58 +0100482if libcap_ng.found() and not cc.links('''
483 #include <cap-ng.h>
484 int main(void)
485 {
486 capng_capability_to_name(CAPNG_EFFECTIVE);
487 return 0;
488 }''', dependencies: libcap_ng)
489 libcap_ng = not_found
490 if get_option('cap_ng').enabled()
491 error('could not link libcap-ng')
492 else
493 warning('could not link libcap-ng, disabling')
494 endif
495endif
496
Paolo Bonzini1917ec62020-08-26 03:24:11 -0400497if get_option('xkbcommon').auto() and not have_system and not have_tools
498 xkbcommon = not_found
499else
500 xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100501 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureauade60d42019-07-15 14:48:31 +0400502endif
Paolo Bonzinie1723992021-10-07 15:08:21 +0200503
Marc-André Lureaucdaf0722019-07-22 23:47:50 +0400504vde = not_found
Paolo Bonzinie1723992021-10-07 15:08:21 +0200505if not get_option('vde').auto() or have_system or have_tools
506 vde = cc.find_library('vdeplug', has_headers: ['libvdeplug.h'],
507 required: get_option('vde'),
508 kwargs: static_kwargs)
509endif
510if vde.found() and not cc.links('''
511 #include <libvdeplug.h>
512 int main(void)
513 {
514 struct vde_open_args a = {0, 0, 0};
515 char s[] = "";
516 vde_open(s, s, &a);
517 return 0;
518 }''', dependencies: vde)
519 vde = not_found
520 if get_option('cap_ng').enabled()
521 error('could not link libvdeplug')
522 else
523 warning('could not link libvdeplug, disabling')
524 endif
Marc-André Lureaucdaf0722019-07-22 23:47:50 +0400525endif
Paolo Bonzini87430d52021-10-07 15:06:09 +0200526
Paolo Bonzini478e9432020-08-17 12:47:55 +0200527pulse = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200528if not get_option('pa').auto() or (targetos == 'linux' and have_system)
529 pulse = dependency('libpulse', required: get_option('pa'),
530 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini478e9432020-08-17 12:47:55 +0200531endif
532alsa = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200533if not get_option('alsa').auto() or (targetos == 'linux' and have_system)
534 alsa = dependency('alsa', required: get_option('alsa'),
535 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini478e9432020-08-17 12:47:55 +0200536endif
537jack = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200538if not get_option('jack').auto() or have_system
539 jack = dependency('jack', required: get_option('jack'),
540 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini478e9432020-08-17 12:47:55 +0200541endif
Paolo Bonzini87430d52021-10-07 15:06:09 +0200542
Paolo Bonzini26347332019-07-29 15:40:07 +0200543spice = not_found
Gerd Hoffmannd72c34c2020-10-14 14:11:18 +0200544spice_headers = not_found
Gerd Hoffmann58d3f3f2021-05-19 07:39:32 +0200545spice_protocol = not_found
Paolo Bonzini26347332019-07-29 15:40:07 +0200546if 'CONFIG_SPICE' in config_host
547 spice = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split(),
548 link_args: config_host['SPICE_LIBS'].split())
Gerd Hoffmannd72c34c2020-10-14 14:11:18 +0200549 spice_headers = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split())
Paolo Bonzini26347332019-07-29 15:40:07 +0200550endif
Gerd Hoffmann58d3f3f2021-05-19 07:39:32 +0200551if 'CONFIG_SPICE_PROTOCOL' in config_host
552 spice_protocol = declare_dependency(compile_args: config_host['SPICE_PROTOCOL_CFLAGS'].split())
553endif
Marc-André Lureau5ee24e72019-07-12 23:16:54 +0400554rt = cc.find_library('rt', required: false)
Paolo Bonziniccf7afa2020-09-01 06:44:23 -0400555libdl = not_found
556if 'CONFIG_PLUGIN' in config_host
Alex Bennéee8575f22021-07-14 11:15:36 +0100557 libdl = cc.find_library('dl', required: false)
558 if not cc.has_function('dlopen', dependencies: libdl)
559 error('dlopen not found')
560 endif
Paolo Bonziniccf7afa2020-09-01 06:44:23 -0400561endif
Paolo Bonzini99650b62019-06-10 12:21:14 +0200562libiscsi = not_found
Paolo Bonzini9db405a2020-11-17 13:11:25 +0100563if not get_option('libiscsi').auto() or have_block
564 libiscsi = dependency('libiscsi', version: '>=1.9.0',
565 required: get_option('libiscsi'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100566 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini99650b62019-06-10 12:21:14 +0200567endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400568zstd = not_found
Paolo Bonzinib1def332020-11-17 13:37:39 +0100569if not get_option('zstd').auto() or have_block
570 zstd = dependency('libzstd', version: '>=1.4.0',
571 required: get_option('zstd'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100572 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400573endif
Marc-André Lureauea458962019-07-12 22:23:46 +0400574virgl = not_found
Paolo Bonzini587d59d2021-06-03 11:31:35 +0200575if not get_option('virglrenderer').auto() or have_system
576 virgl = dependency('virglrenderer',
577 method: 'pkg-config',
578 required: get_option('virglrenderer'),
579 kwargs: static_kwargs)
Marc-André Lureauea458962019-07-12 22:23:46 +0400580endif
Marc-André Lureau1d7bb6a2019-07-12 23:47:06 +0400581curl = not_found
Paolo Bonzinif9cd86f2020-11-17 12:43:15 +0100582if not get_option('curl').auto() or have_block
583 curl = dependency('libcurl', version: '>=7.29.0',
584 method: 'pkg-config',
585 required: get_option('curl'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100586 kwargs: static_kwargs)
Marc-André Lureau1d7bb6a2019-07-12 23:47:06 +0400587endif
Paolo Bonzinif15bff22019-07-18 13:19:02 +0200588libudev = not_found
Paolo Bonzinif01496a2020-09-16 17:54:14 +0200589if targetos == 'linux' and (have_system or have_tools)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200590 libudev = dependency('libudev',
Paolo Bonzinia0fbbb62020-11-17 12:36:15 +0100591 method: 'pkg-config',
Paolo Bonzini5c530152020-10-15 06:09:27 -0400592 required: get_option('libudev'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100593 kwargs: static_kwargs)
Paolo Bonzinif15bff22019-07-18 13:19:02 +0200594endif
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200595
Paolo Bonzini5c530152020-10-15 06:09:27 -0400596mpathlibs = [libudev]
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200597mpathpersist = not_found
598mpathpersist_new_api = false
599if targetos == 'linux' and have_tools and not get_option('mpath').disabled()
600 mpath_test_source_new = '''
601 #include <libudev.h>
602 #include <mpath_persist.h>
603 unsigned mpath_mx_alloc_len = 1024;
604 int logsink;
605 static struct config *multipath_conf;
606 extern struct udev *udev;
607 extern struct config *get_multipath_config(void);
608 extern void put_multipath_config(struct config *conf);
609 struct udev *udev;
610 struct config *get_multipath_config(void) { return multipath_conf; }
611 void put_multipath_config(struct config *conf) { }
612 int main(void) {
613 udev = udev_new();
614 multipath_conf = mpath_lib_init();
615 return 0;
616 }'''
617 mpath_test_source_old = '''
618 #include <libudev.h>
619 #include <mpath_persist.h>
620 unsigned mpath_mx_alloc_len = 1024;
621 int logsink;
622 int main(void) {
623 struct udev *udev = udev_new();
624 mpath_lib_init(udev);
625 return 0;
626 }'''
Paolo Bonzini5c530152020-10-15 06:09:27 -0400627 libmpathpersist = cc.find_library('mpathpersist',
628 required: get_option('mpath'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100629 kwargs: static_kwargs)
Paolo Bonzini5c530152020-10-15 06:09:27 -0400630 if libmpathpersist.found()
631 mpathlibs += libmpathpersist
632 if enable_static
633 mpathlibs += cc.find_library('devmapper',
634 required: get_option('mpath'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100635 kwargs: static_kwargs)
Paolo Bonzini43b43a42020-09-17 12:25:09 +0200636 endif
Paolo Bonzini5c530152020-10-15 06:09:27 -0400637 mpathlibs += cc.find_library('multipath',
638 required: get_option('mpath'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100639 kwargs: static_kwargs)
Paolo Bonzini5c530152020-10-15 06:09:27 -0400640 foreach lib: mpathlibs
641 if not lib.found()
642 mpathlibs = []
643 break
644 endif
645 endforeach
646 if mpathlibs.length() == 0
647 msg = 'Dependencies missing for libmpathpersist'
648 elif cc.links(mpath_test_source_new, dependencies: mpathlibs)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200649 mpathpersist = declare_dependency(dependencies: mpathlibs)
650 mpathpersist_new_api = true
651 elif cc.links(mpath_test_source_old, dependencies: mpathlibs)
652 mpathpersist = declare_dependency(dependencies: mpathlibs)
653 else
Paolo Bonzini5c530152020-10-15 06:09:27 -0400654 msg = 'Cannot detect libmpathpersist API'
655 endif
656 if not mpathpersist.found()
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200657 if get_option('mpath').enabled()
Paolo Bonzini5c530152020-10-15 06:09:27 -0400658 error(msg)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200659 else
Paolo Bonzini5c530152020-10-15 06:09:27 -0400660 warning(msg + ', disabling')
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200661 endif
662 endif
663 endif
664endif
665
Yonggang Luo5285e592020-10-13 07:43:48 +0800666iconv = not_found
Yonggang Luo5285e592020-10-13 07:43:48 +0800667curses = not_found
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400668if have_system and not get_option('curses').disabled()
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400669 curses_test = '''
670 #include <locale.h>
671 #include <curses.h>
672 #include <wchar.h>
673 int main(void) {
674 wchar_t wch = L'w';
675 setlocale(LC_ALL, "");
676 resize_term(0, 0);
677 addwstr(L"wide chars\n");
678 addnwstr(&wch, 1);
679 add_wch(WACS_DEGREE);
680 return 0;
681 }'''
682
Yonggang Luoca31e302020-11-17 05:31:06 +0800683 curses_dep_list = targetos == 'windows' ? ['ncurses', 'ncursesw'] : ['ncursesw']
684 foreach curses_dep : curses_dep_list
685 if not curses.found()
686 curses = dependency(curses_dep,
687 required: false,
688 method: 'pkg-config',
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100689 kwargs: static_kwargs)
Yonggang Luoca31e302020-11-17 05:31:06 +0800690 endif
691 endforeach
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400692 msg = get_option('curses').enabled() ? 'curses library not found' : ''
Paolo Bonzini0dbce6e2020-11-30 08:07:48 -0500693 curses_compile_args = ['-DNCURSES_WIDECHAR']
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400694 if curses.found()
Paolo Bonzini0dbce6e2020-11-30 08:07:48 -0500695 if cc.links(curses_test, args: curses_compile_args, dependencies: [curses])
696 curses = declare_dependency(compile_args: curses_compile_args, dependencies: [curses])
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400697 else
698 msg = 'curses package not usable'
699 curses = not_found
Yonggang Luo5285e592020-10-13 07:43:48 +0800700 endif
701 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400702 if not curses.found()
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400703 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
704 if targetos != 'windows' and not has_curses_h
705 message('Trying with /usr/include/ncursesw')
706 curses_compile_args += ['-I/usr/include/ncursesw']
707 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
708 endif
709 if has_curses_h
710 curses_libname_list = (targetos == 'windows' ? ['pdcurses'] : ['ncursesw', 'cursesw'])
711 foreach curses_libname : curses_libname_list
Yonggang Luo5285e592020-10-13 07:43:48 +0800712 libcurses = cc.find_library(curses_libname,
713 required: false,
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100714 kwargs: static_kwargs)
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400715 if libcurses.found()
716 if cc.links(curses_test, args: curses_compile_args, dependencies: libcurses)
717 curses = declare_dependency(compile_args: curses_compile_args,
718 dependencies: [libcurses])
719 break
720 else
721 msg = 'curses library not usable'
722 endif
Yonggang Luo5285e592020-10-13 07:43:48 +0800723 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400724 endforeach
725 endif
726 endif
727 if not get_option('iconv').disabled()
728 foreach link_args : [ ['-liconv'], [] ]
729 # Programs will be linked with glib and this will bring in libiconv on FreeBSD.
730 # We need to use libiconv if available because mixing libiconv's headers with
731 # the system libc does not work.
732 # However, without adding glib to the dependencies -L/usr/local/lib will not be
733 # included in the command line and libiconv will not be found.
734 if cc.links('''
735 #include <iconv.h>
736 int main(void) {
737 iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
738 return conv != (iconv_t) -1;
739 }''', args: config_host['GLIB_CFLAGS'].split() + config_host['GLIB_LIBS'].split() + link_args)
740 iconv = declare_dependency(link_args: link_args, dependencies: glib)
741 break
Yonggang Luo5285e592020-10-13 07:43:48 +0800742 endif
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400743 endforeach
744 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400745 if curses.found() and not iconv.found()
746 if get_option('iconv').enabled()
747 error('iconv not available')
748 endif
749 msg = 'iconv required for curses UI but not available'
750 curses = not_found
751 endif
752 if not curses.found() and msg != ''
753 if get_option('curses').enabled()
754 error(msg)
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400755 else
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400756 warning(msg + ', disabling')
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400757 endif
Yonggang Luo5285e592020-10-13 07:43:48 +0800758 endif
759endif
760
Paolo Bonzini26347332019-07-29 15:40:07 +0200761brlapi = not_found
Paolo Bonzini8c6d4ff2020-11-17 13:02:17 +0100762if not get_option('brlapi').auto() or have_system
763 brlapi = cc.find_library('brlapi', has_headers: ['brlapi.h'],
764 required: get_option('brlapi'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100765 kwargs: static_kwargs)
Paolo Bonzini8c6d4ff2020-11-17 13:02:17 +0100766 if brlapi.found() and not cc.links('''
767 #include <brlapi.h>
768 #include <stddef.h>
769 int main(void) { return brlapi__openConnection (NULL, NULL, NULL); }''', dependencies: brlapi)
770 brlapi = not_found
771 if get_option('brlapi').enabled()
772 error('could not link brlapi')
773 else
774 warning('could not link brlapi, disabling')
775 endif
776 endif
Paolo Bonzini26347332019-07-29 15:40:07 +0200777endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100778
Paolo Bonzini760e4322020-08-26 08:09:48 +0200779sdl = not_found
Paolo Bonzinic1ec4942021-01-07 14:04:00 +0100780if not get_option('sdl').auto() or (have_system and not cocoa.found())
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100781 sdl = dependency('sdl2', required: get_option('sdl'), kwargs: static_kwargs)
Paolo Bonzini760e4322020-08-26 08:09:48 +0200782 sdl_image = not_found
783endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100784if sdl.found()
785 # work around 2.0.8 bug
786 sdl = declare_dependency(compile_args: '-Wno-undef',
787 dependencies: sdl)
Volker Rümelin7161a432020-08-29 12:41:58 +0200788 sdl_image = dependency('SDL2_image', required: get_option('sdl_image'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100789 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100790else
791 if get_option('sdl_image').enabled()
Sergei Trofimovicha8dc2ac2020-09-08 08:40:16 +0100792 error('sdl-image required, but SDL was @0@'.format(
793 get_option('sdl').disabled() ? 'disabled' : 'not found'))
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100794 endif
795 sdl_image = not_found
Paolo Bonzini26347332019-07-29 15:40:07 +0200796endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100797
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400798rbd = not_found
Paolo Bonzinifabd1e92020-11-17 13:11:25 +0100799if not get_option('rbd').auto() or have_block
800 librados = cc.find_library('rados', required: get_option('rbd'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100801 kwargs: static_kwargs)
Paolo Bonzinifabd1e92020-11-17 13:11:25 +0100802 librbd = cc.find_library('rbd', has_headers: ['rbd/librbd.h'],
803 required: get_option('rbd'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100804 kwargs: static_kwargs)
Paolo Bonzinic518d6c2021-01-26 11:20:35 +0100805 if librados.found() and librbd.found()
806 if cc.links('''
807 #include <stdio.h>
808 #include <rbd/librbd.h>
809 int main(void) {
810 rados_t cluster;
811 rados_create(&cluster, NULL);
Peter Lieven48672ac2021-07-02 19:23:51 +0200812 #if LIBRBD_VERSION_CODE < LIBRBD_VERSION(1, 12, 0)
813 #error
814 #endif
Paolo Bonzinic518d6c2021-01-26 11:20:35 +0100815 return 0;
816 }''', dependencies: [librbd, librados])
817 rbd = declare_dependency(dependencies: [librbd, librados])
818 elif get_option('rbd').enabled()
Peter Lieven48672ac2021-07-02 19:23:51 +0200819 error('librbd >= 1.12.0 required')
Paolo Bonzinic518d6c2021-01-26 11:20:35 +0100820 else
Peter Lieven48672ac2021-07-02 19:23:51 +0200821 warning('librbd >= 1.12.0 not found, disabling')
Paolo Bonzinic518d6c2021-01-26 11:20:35 +0100822 endif
Paolo Bonzinifabd1e92020-11-17 13:11:25 +0100823 endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400824endif
Paolo Bonzinifabd1e92020-11-17 13:11:25 +0100825
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400826glusterfs = not_found
Paolo Bonzini08821ca2020-11-17 13:01:26 +0100827glusterfs_ftruncate_has_stat = false
828glusterfs_iocb_has_stat = false
829if not get_option('glusterfs').auto() or have_block
830 glusterfs = dependency('glusterfs-api', version: '>=3',
831 required: get_option('glusterfs'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100832 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini08821ca2020-11-17 13:01:26 +0100833 if glusterfs.found()
834 glusterfs_ftruncate_has_stat = cc.links('''
835 #include <glusterfs/api/glfs.h>
836
837 int
838 main(void)
839 {
840 /* new glfs_ftruncate() passes two additional args */
841 return glfs_ftruncate(NULL, 0, NULL, NULL);
842 }
843 ''', dependencies: glusterfs)
844 glusterfs_iocb_has_stat = cc.links('''
845 #include <glusterfs/api/glfs.h>
846
847 /* new glfs_io_cbk() passes two additional glfs_stat structs */
848 static void
849 glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data)
850 {}
851
852 int
853 main(void)
854 {
855 glfs_io_cbk iocb = &glusterfs_iocb;
856 iocb(NULL, 0 , NULL, NULL, NULL);
857 return 0;
858 }
859 ''', dependencies: glusterfs)
860 endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400861endif
862libssh = not_found
863if 'CONFIG_LIBSSH' in config_host
864 libssh = declare_dependency(compile_args: config_host['LIBSSH_CFLAGS'].split(),
865 link_args: config_host['LIBSSH_LIBS'].split())
866endif
867libbzip2 = not_found
Paolo Bonzini29ba6112020-11-17 13:07:52 +0100868if not get_option('bzip2').auto() or have_block
869 libbzip2 = cc.find_library('bz2', has_headers: ['bzlib.h'],
870 required: get_option('bzip2'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100871 kwargs: static_kwargs)
Paolo Bonzini29ba6112020-11-17 13:07:52 +0100872 if libbzip2.found() and not cc.links('''
873 #include <bzlib.h>
874 int main(void) { BZ2_bzlibVersion(); return 0; }''', dependencies: libbzip2)
875 libbzip2 = not_found
876 if get_option('bzip2').enabled()
877 error('could not link libbzip2')
878 else
879 warning('could not link libbzip2, disabling')
880 endif
881 endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400882endif
Paolo Bonziniecea3692020-11-17 13:35:28 +0100883
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400884liblzfse = not_found
Paolo Bonziniecea3692020-11-17 13:35:28 +0100885if not get_option('lzfse').auto() or have_block
886 liblzfse = cc.find_library('lzfse', has_headers: ['lzfse.h'],
887 required: get_option('lzfse'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +0100888 kwargs: static_kwargs)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400889endif
Paolo Bonziniecea3692020-11-17 13:35:28 +0100890if liblzfse.found() and not cc.links('''
891 #include <lzfse.h>
892 int main(void) { lzfse_decode_scratch_size(); return 0; }''', dependencies: liblzfse)
893 liblzfse = not_found
894 if get_option('lzfse').enabled()
895 error('could not link liblzfse')
896 else
897 warning('could not link liblzfse, disabling')
898 endif
899endif
900
Paolo Bonzini478e9432020-08-17 12:47:55 +0200901oss = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200902if not get_option('oss').auto() or have_system
903 if not cc.has_header('sys/soundcard.h')
904 # not found
905 elif targetos == 'netbsd'
906 oss = cc.find_library('ossaudio', required: get_option('oss'),
907 kwargs: static_kwargs)
908 else
909 oss = declare_dependency()
910 endif
911
912 if not oss.found()
913 if get_option('oss').enabled()
914 error('OSS not found')
915 else
916 warning('OSS not found, disabling')
917 endif
918 endif
Paolo Bonzini478e9432020-08-17 12:47:55 +0200919endif
920dsound = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200921if not get_option('dsound').auto() or (targetos == 'windows' and have_system)
922 if cc.has_header('dsound.h')
923 dsound = declare_dependency(link_args: ['-lole32', '-ldxguid'])
924 endif
925
926 if not dsound.found()
927 if get_option('dsound').enabled()
928 error('DirectSound not found')
929 else
930 warning('DirectSound not found, disabling')
931 endif
932 endif
Paolo Bonzini478e9432020-08-17 12:47:55 +0200933endif
Paolo Bonzini87430d52021-10-07 15:06:09 +0200934
Paolo Bonzini478e9432020-08-17 12:47:55 +0200935coreaudio = not_found
Paolo Bonzini87430d52021-10-07 15:06:09 +0200936if not get_option('coreaudio').auto() or (targetos == 'darwin' and have_system)
937 coreaudio = dependency('appleframeworks', modules: 'CoreAudio',
938 required: get_option('coreaudio'))
939 if coreaudio.found() and not cc.links('''
940 #include <CoreAudio/CoreAudio.h>
941 int main(void)
942 {
943 return (int)AudioGetCurrentHostTime();
944 }''')
945 coreaudio = not_found
946 endif
947
948 if not coreaudio.found()
949 if get_option('coreaudio').enabled()
950 error('CoreAudio not found')
951 else
952 warning('CoreAudio not found, disabling')
953 endif
954 endif
Paolo Bonzini478e9432020-08-17 12:47:55 +0200955endif
Thomas Huth8bc51842021-07-13 13:09:02 +0200956
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400957opengl = not_found
958if 'CONFIG_OPENGL' in config_host
Paolo Bonzinide2d3002020-09-01 08:41:17 -0400959 opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(),
960 link_args: config_host['OPENGL_LIBS'].split())
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400961endif
Thomas Huth8bc51842021-07-13 13:09:02 +0200962gbm = not_found
963if (have_system or have_tools) and (virgl.found() or opengl.found())
964 gbm = dependency('gbm', method: 'pkg-config', required: false,
965 kwargs: static_kwargs)
966endif
Paolo Bonzini1b695472021-01-07 14:02:29 +0100967
Paolo Bonzini57612512021-06-03 11:15:26 +0200968gnutls = not_found
Daniel P. Berrangécc4c7c72021-06-30 17:20:02 +0100969gnutls_crypto = not_found
Alyssa Rossabc14fd2021-08-06 14:49:47 +0000970if get_option('gnutls').enabled() or (get_option('gnutls').auto() and have_system)
Daniel P. Berrangécc4c7c72021-06-30 17:20:02 +0100971 # For general TLS support our min gnutls matches
972 # that implied by our platform support matrix
973 #
974 # For the crypto backends, we look for a newer
975 # gnutls:
976 #
977 # Version 3.6.8 is needed to get XTS
978 # Version 3.6.13 is needed to get PBKDF
979 # Version 3.6.14 is needed to get HW accelerated XTS
980 #
981 # If newer enough gnutls isn't available, we can
982 # still use a different crypto backend to satisfy
983 # the platform support requirements
984 gnutls_crypto = dependency('gnutls', version: '>=3.6.14',
985 method: 'pkg-config',
986 required: false,
987 kwargs: static_kwargs)
988 if gnutls_crypto.found()
989 gnutls = gnutls_crypto
990 else
991 # Our min version if all we need is TLS
992 gnutls = dependency('gnutls', version: '>=3.5.18',
993 method: 'pkg-config',
994 required: get_option('gnutls'),
995 kwargs: static_kwargs)
996 endif
Paolo Bonzini57612512021-06-03 11:15:26 +0200997endif
998
Daniel P. Berrangé8bd09312021-07-02 17:38:33 +0100999# We prefer use of gnutls for crypto, unless the options
1000# explicitly asked for nettle or gcrypt.
1001#
1002# If gnutls isn't available for crypto, then we'll prefer
1003# gcrypt over nettle for performance reasons.
Paolo Bonzini57612512021-06-03 11:15:26 +02001004gcrypt = not_found
1005nettle = not_found
Daniel P. Berrangé68014042021-07-02 17:00:32 +01001006xts = 'none'
Daniel P. Berrangé8bd09312021-07-02 17:38:33 +01001007
Paolo Bonzini57612512021-06-03 11:15:26 +02001008if get_option('nettle').enabled() and get_option('gcrypt').enabled()
1009 error('Only one of gcrypt & nettle can be enabled')
Paolo Bonzini57612512021-06-03 11:15:26 +02001010endif
Daniel P. Berrangé8bd09312021-07-02 17:38:33 +01001011
1012# Explicit nettle/gcrypt request, so ignore gnutls for crypto
1013if get_option('nettle').enabled() or get_option('gcrypt').enabled()
Daniel P. Berrangécc4c7c72021-06-30 17:20:02 +01001014 gnutls_crypto = not_found
1015endif
Paolo Bonzini57612512021-06-03 11:15:26 +02001016
Daniel P. Berrangé8bd09312021-07-02 17:38:33 +01001017if not gnutls_crypto.found()
1018 if (not get_option('gcrypt').auto() or have_system) and not get_option('nettle').enabled()
1019 gcrypt = dependency('libgcrypt', version: '>=1.8',
1020 method: 'config-tool',
1021 required: get_option('gcrypt'),
1022 kwargs: static_kwargs)
1023 # Debian has removed -lgpg-error from libgcrypt-config
1024 # as it "spreads unnecessary dependencies" which in
1025 # turn breaks static builds...
1026 if gcrypt.found() and enable_static
1027 gcrypt = declare_dependency(dependencies: [
1028 gcrypt,
1029 cc.find_library('gpg-error', required: true, kwargs: static_kwargs)])
1030 endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001031 endif
Daniel P. Berrangé8bd09312021-07-02 17:38:33 +01001032 if (not get_option('nettle').auto() or have_system) and not gcrypt.found()
1033 nettle = dependency('nettle', version: '>=3.4',
1034 method: 'pkg-config',
1035 required: get_option('nettle'),
1036 kwargs: static_kwargs)
1037 if nettle.found() and not cc.has_header('nettle/xts.h', dependencies: nettle)
1038 xts = 'private'
1039 endif
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001040 endif
1041endif
1042
1043gtk = not_found
Paolo Bonzini1b695472021-01-07 14:02:29 +01001044gtkx11 = not_found
Paolo Bonzinic23d7b42021-06-03 11:31:35 +02001045vte = not_found
Paolo Bonzinic1ec4942021-01-07 14:04:00 +01001046if not get_option('gtk').auto() or (have_system and not cocoa.found())
Paolo Bonzini1b695472021-01-07 14:02:29 +01001047 gtk = dependency('gtk+-3.0', version: '>=3.22.0',
1048 method: 'pkg-config',
1049 required: get_option('gtk'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001050 kwargs: static_kwargs)
Paolo Bonzini1b695472021-01-07 14:02:29 +01001051 if gtk.found()
1052 gtkx11 = dependency('gtk+-x11-3.0', version: '>=3.22.0',
1053 method: 'pkg-config',
1054 required: false,
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001055 kwargs: static_kwargs)
Paolo Bonzini1b695472021-01-07 14:02:29 +01001056 gtk = declare_dependency(dependencies: [gtk, gtkx11])
Paolo Bonzinic23d7b42021-06-03 11:31:35 +02001057
1058 if not get_option('vte').auto() or have_system
1059 vte = dependency('vte-2.91',
1060 method: 'pkg-config',
1061 required: get_option('vte'),
1062 kwargs: static_kwargs)
1063 endif
Paolo Bonzini1b695472021-01-07 14:02:29 +01001064 endif
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001065endif
Paolo Bonzini1b695472021-01-07 14:02:29 +01001066
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001067x11 = not_found
Markus Armbruster9d49bcf2021-05-03 10:40:33 +02001068if gtkx11.found()
Paolo Bonzini1b695472021-01-07 14:02:29 +01001069 x11 = dependency('x11', method: 'pkg-config', required: gtkx11.found(),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001070 kwargs: static_kwargs)
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001071endif
Paolo Bonzinia0b93232020-02-06 15:48:52 +01001072vnc = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001073png = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001074jpeg = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001075sasl = not_found
Thomas Huth95e22892021-09-06 17:39:39 +02001076if have_system and not get_option('vnc').disabled()
Paolo Bonzinia0b93232020-02-06 15:48:52 +01001077 vnc = declare_dependency() # dummy dependency
1078 png = dependency('libpng', required: get_option('vnc_png'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001079 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzini8e242b32020-11-23 13:34:02 -05001080 jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001081 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzinia0b93232020-02-06 15:48:52 +01001082 sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'],
1083 required: get_option('vnc_sasl'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001084 kwargs: static_kwargs)
Paolo Bonzinia0b93232020-02-06 15:48:52 +01001085 if sasl.found()
1086 sasl = declare_dependency(dependencies: sasl,
1087 compile_args: '-DSTRUCT_IOVEC_DEFINED')
1088 endif
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +04001089endif
Paolo Bonzini241611e2020-11-17 13:32:34 +01001090
Paolo Bonzini05e391a2021-06-03 11:15:26 +02001091pam = not_found
1092if not get_option('auth_pam').auto() or have_system
1093 pam = cc.find_library('pam', has_headers: ['security/pam_appl.h'],
1094 required: get_option('auth_pam'),
1095 kwargs: static_kwargs)
1096endif
1097if pam.found() and not cc.links('''
1098 #include <stddef.h>
1099 #include <security/pam_appl.h>
1100 int main(void) {
1101 const char *service_name = "qemu";
1102 const char *user = "frank";
1103 const struct pam_conv pam_conv = { 0 };
1104 pam_handle_t *pamh = NULL;
1105 pam_start(service_name, user, &pam_conv, &pamh);
1106 return 0;
1107 }''', dependencies: pam)
1108 pam = not_found
1109 if get_option('auth_pam').enabled()
1110 error('could not link libpam')
1111 else
1112 warning('could not link libpam, disabling')
1113 endif
1114endif
1115
Marc-André Lureau708eab42019-09-03 16:59:33 +04001116snappy = not_found
Paolo Bonzini241611e2020-11-17 13:32:34 +01001117if not get_option('snappy').auto() or have_system
1118 snappy = cc.find_library('snappy', has_headers: ['snappy-c.h'],
1119 required: get_option('snappy'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001120 kwargs: static_kwargs)
Marc-André Lureau708eab42019-09-03 16:59:33 +04001121endif
Paolo Bonzini241611e2020-11-17 13:32:34 +01001122if snappy.found() and not cc.links('''
1123 #include <snappy-c.h>
1124 int main(void) { snappy_max_compressed_length(4096); return 0; }''', dependencies: snappy)
1125 snappy = not_found
1126 if get_option('snappy').enabled()
1127 error('could not link libsnappy')
1128 else
1129 warning('could not link libsnappy, disabling')
1130 endif
Marc-André Lureau708eab42019-09-03 16:59:33 +04001131endif
Paolo Bonzini0c32a0a2020-11-17 13:11:25 +01001132
Marc-André Lureau708eab42019-09-03 16:59:33 +04001133lzo = not_found
Paolo Bonzini0c32a0a2020-11-17 13:11:25 +01001134if not get_option('lzo').auto() or have_system
1135 lzo = cc.find_library('lzo2', has_headers: ['lzo/lzo1x.h'],
1136 required: get_option('lzo'),
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001137 kwargs: static_kwargs)
Marc-André Lureau708eab42019-09-03 16:59:33 +04001138endif
Paolo Bonzini0c32a0a2020-11-17 13:11:25 +01001139if lzo.found() and not cc.links('''
1140 #include <lzo/lzo1x.h>
1141 int main(void) { lzo_version(); return 0; }''', dependencies: lzo)
1142 lzo = not_found
1143 if get_option('lzo').enabled()
1144 error('could not link liblzo2')
1145 else
1146 warning('could not link liblzo2, disabling')
1147 endif
1148endif
1149
Marc-André Lureau55166232019-07-24 19:16:22 +04001150rdma = not_found
1151if 'CONFIG_RDMA' in config_host
1152 rdma = declare_dependency(link_args: config_host['RDMA_LIBS'].split())
1153endif
Marc-André Lureauab318052019-07-24 19:23:16 +04001154numa = not_found
1155if 'CONFIG_NUMA' in config_host
1156 numa = declare_dependency(link_args: config_host['NUMA_LIBS'].split())
1157endif
Marc-André Lureau582ea952019-08-15 15:15:32 +04001158xen = not_found
1159if 'CONFIG_XEN_BACKEND' in config_host
1160 xen = declare_dependency(compile_args: config_host['XEN_CFLAGS'].split(),
1161 link_args: config_host['XEN_LIBS'].split())
1162endif
Paolo Bonzini06677ce2020-08-06 13:07:39 +02001163cacard = not_found
Paolo Bonzini5f364c52021-06-03 11:15:26 +02001164if not get_option('smartcard').auto() or have_system
1165 cacard = dependency('libcacard', required: get_option('smartcard'),
1166 version: '>=2.5.1', method: 'pkg-config',
1167 kwargs: static_kwargs)
Paolo Bonzini06677ce2020-08-06 13:07:39 +02001168endif
César Belley0a40bcb2020-08-26 13:42:04 +02001169u2f = not_found
1170if have_system
1171 u2f = dependency('u2f-emu', required: get_option('u2f'),
1172 method: 'pkg-config',
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001173 kwargs: static_kwargs)
César Belley0a40bcb2020-08-26 13:42:04 +02001174endif
Paolo Bonzini06677ce2020-08-06 13:07:39 +02001175usbredir = not_found
Paolo Bonzini18f31e62021-06-03 11:15:26 +02001176if not get_option('usb_redir').auto() or have_system
1177 usbredir = dependency('libusbredirparser-0.5', required: get_option('usb_redir'),
1178 version: '>=0.6', method: 'pkg-config',
1179 kwargs: static_kwargs)
Paolo Bonzini06677ce2020-08-06 13:07:39 +02001180endif
1181libusb = not_found
Paolo Bonzini90540f32021-06-03 11:15:26 +02001182if not get_option('libusb').auto() or have_system
1183 libusb = dependency('libusb-1.0', required: get_option('libusb'),
1184 version: '>=1.0.13', method: 'pkg-config',
1185 kwargs: static_kwargs)
Paolo Bonzini06677ce2020-08-06 13:07:39 +02001186endif
Paolo Bonzini90540f32021-06-03 11:15:26 +02001187
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001188libpmem = not_found
Paolo Bonzinie36e8c72021-06-03 11:31:35 +02001189if not get_option('libpmem').auto() or have_system
1190 libpmem = dependency('libpmem', required: get_option('libpmem'),
1191 method: 'pkg-config', kwargs: static_kwargs)
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001192endif
Bruce Rogersc7c91a72020-08-24 09:52:12 -06001193libdaxctl = not_found
Paolo Bonzini83ef1682021-06-03 11:31:35 +02001194if not get_option('libdaxctl').auto() or have_system
1195 libdaxctl = dependency('libdaxctl', required: get_option('libdaxctl'),
1196 version: '>=57', method: 'pkg-config',
1197 kwargs: static_kwargs)
Bruce Rogersc7c91a72020-08-24 09:52:12 -06001198endif
Marc-André Lureau8ce0a452020-08-28 15:07:20 +04001199tasn1 = not_found
Paolo Bonziniba7ed402021-06-03 11:15:26 +02001200if gnutls.found()
1201 tasn1 = dependency('libtasn1',
1202 method: 'pkg-config',
1203 kwargs: static_kwargs)
Marc-André Lureau8ce0a452020-08-28 15:07:20 +04001204endif
Marc-André Lureauaf04e892020-08-28 15:07:25 +04001205keyutils = dependency('libkeyutils', required: false,
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001206 method: 'pkg-config', kwargs: static_kwargs)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001207
Marc-André Lureau3909def2020-08-28 15:07:33 +04001208has_gettid = cc.has_function('gettid')
1209
Paolo Bonziniaa087962020-09-01 11:15:30 -04001210# Malloc tests
1211
1212malloc = []
1213if get_option('malloc') == 'system'
1214 has_malloc_trim = \
1215 not get_option('malloc_trim').disabled() and \
1216 cc.links('''#include <malloc.h>
1217 int main(void) { malloc_trim(0); return 0; }''')
1218else
1219 has_malloc_trim = false
1220 malloc = cc.find_library(get_option('malloc'), required: true)
1221endif
1222if not has_malloc_trim and get_option('malloc_trim').enabled()
1223 if get_option('malloc') == 'system'
1224 error('malloc_trim not available on this platform.')
1225 else
1226 error('malloc_trim not available with non-libc memory allocator')
1227 endif
1228endif
1229
Max Reitz84e319a2020-11-02 17:18:55 +01001230# Check whether the glibc provides statx()
1231
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001232gnu_source_prefix = '''
Max Reitz84e319a2020-11-02 17:18:55 +01001233 #ifndef _GNU_SOURCE
1234 #define _GNU_SOURCE
1235 #endif
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001236'''
1237statx_test = gnu_source_prefix + '''
Max Reitz84e319a2020-11-02 17:18:55 +01001238 #include <sys/stat.h>
1239 int main(void) {
1240 struct statx statxbuf;
1241 statx(0, "", 0, STATX_BASIC_STATS, &statxbuf);
1242 return 0;
1243 }'''
1244
1245has_statx = cc.links(statx_test)
1246
Stefan Hajnoczieb6a3882020-11-10 17:11:20 +00001247have_vhost_user_blk_server = (targetos == 'linux' and
1248 'CONFIG_VHOST_USER' in config_host)
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +00001249
1250if get_option('vhost_user_blk_server').enabled()
1251 if targetos != 'linux'
1252 error('vhost_user_blk_server requires linux')
Stefan Hajnoczieb6a3882020-11-10 17:11:20 +00001253 elif 'CONFIG_VHOST_USER' not in config_host
1254 error('vhost_user_blk_server requires vhost-user support')
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +00001255 endif
1256elif get_option('vhost_user_blk_server').disabled() or not have_system
1257 have_vhost_user_blk_server = false
1258endif
1259
Daniele Buono9e62ba42020-12-04 18:06:14 -05001260
Max Reitzdf4ea702020-10-27 20:05:46 +01001261if get_option('fuse').disabled() and get_option('fuse_lseek').enabled()
1262 error('Cannot enable fuse-lseek while fuse is disabled')
1263endif
1264
Max Reitza484a712020-10-27 20:05:41 +01001265fuse = dependency('fuse3', required: get_option('fuse'),
1266 version: '>=3.1', method: 'pkg-config',
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001267 kwargs: static_kwargs)
Max Reitza484a712020-10-27 20:05:41 +01001268
Max Reitzdf4ea702020-10-27 20:05:46 +01001269fuse_lseek = not_found
1270if not get_option('fuse_lseek').disabled()
1271 if fuse.version().version_compare('>=3.8')
1272 # Dummy dependency
1273 fuse_lseek = declare_dependency()
1274 elif get_option('fuse_lseek').enabled()
1275 if fuse.found()
1276 error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version())
1277 else
1278 error('fuse-lseek requires libfuse, which was not found')
1279 endif
1280 endif
1281endif
1282
Andrew Melnychenko46627f42021-05-14 14:48:32 +03001283# libbpf
1284libbpf = dependency('libbpf', required: get_option('bpf'), method: 'pkg-config')
1285if libbpf.found() and not cc.links('''
1286 #include <bpf/libbpf.h>
1287 int main(void)
1288 {
1289 bpf_object__destroy_skeleton(NULL);
1290 return 0;
1291 }''', dependencies: libbpf)
1292 libbpf = not_found
1293 if get_option('bpf').enabled()
1294 error('libbpf skeleton test failed')
1295 else
1296 warning('libbpf skeleton test failed, disabling')
1297 endif
1298endif
1299
Paolo Bonzini87430d52021-10-07 15:06:09 +02001300#################
1301# config-host.h #
1302#################
1303
1304audio_drivers_selected = []
1305if have_system
1306 audio_drivers_available = {
1307 'alsa': alsa.found(),
1308 'coreaudio': coreaudio.found(),
1309 'dsound': dsound.found(),
1310 'jack': jack.found(),
1311 'oss': oss.found(),
1312 'pa': pulse.found(),
1313 'sdl': sdl.found(),
1314 }
Paolo Bonzinie5424a22021-10-07 15:06:10 +02001315 foreach k, v: audio_drivers_available
1316 config_host_data.set('CONFIG_AUDIO_' + k.to_upper(), v)
1317 endforeach
Paolo Bonzini87430d52021-10-07 15:06:09 +02001318
1319 # Default to native drivers first, OSS second, SDL third
1320 audio_drivers_priority = \
1321 [ 'pa', 'coreaudio', 'dsound', 'oss' ] + \
1322 (targetos == 'linux' ? [] : [ 'sdl' ])
1323 audio_drivers_default = []
1324 foreach k: audio_drivers_priority
1325 if audio_drivers_available[k]
1326 audio_drivers_default += k
1327 endif
1328 endforeach
1329
1330 foreach k: get_option('audio_drv_list')
1331 if k == 'default'
1332 audio_drivers_selected += audio_drivers_default
1333 elif not audio_drivers_available[k]
1334 error('Audio driver "@0@" not available.'.format(k))
1335 else
1336 audio_drivers_selected += k
1337 endif
1338 endforeach
1339endif
Paolo Bonzini87430d52021-10-07 15:06:09 +02001340config_host_data.set('CONFIG_AUDIO_DRIVERS',
1341 '"' + '", "'.join(audio_drivers_selected) + '", ')
1342
Daniele Buono9e62ba42020-12-04 18:06:14 -05001343if get_option('cfi')
1344 cfi_flags=[]
1345 # Check for dependency on LTO
1346 if not get_option('b_lto')
1347 error('Selected Control-Flow Integrity but LTO is disabled')
1348 endif
1349 if config_host.has_key('CONFIG_MODULES')
1350 error('Selected Control-Flow Integrity is not compatible with modules')
1351 endif
1352 # Check for cfi flags. CFI requires LTO so we can't use
1353 # get_supported_arguments, but need a more complex "compiles" which allows
1354 # custom arguments
1355 if cc.compiles('int main () { return 0; }', name: '-fsanitize=cfi-icall',
1356 args: ['-flto', '-fsanitize=cfi-icall'] )
1357 cfi_flags += '-fsanitize=cfi-icall'
1358 else
1359 error('-fsanitize=cfi-icall is not supported by the compiler')
1360 endif
1361 if cc.compiles('int main () { return 0; }',
1362 name: '-fsanitize-cfi-icall-generalize-pointers',
1363 args: ['-flto', '-fsanitize=cfi-icall',
1364 '-fsanitize-cfi-icall-generalize-pointers'] )
1365 cfi_flags += '-fsanitize-cfi-icall-generalize-pointers'
1366 else
1367 error('-fsanitize-cfi-icall-generalize-pointers is not supported by the compiler')
1368 endif
1369 if get_option('cfi_debug')
1370 if cc.compiles('int main () { return 0; }',
1371 name: '-fno-sanitize-trap=cfi-icall',
1372 args: ['-flto', '-fsanitize=cfi-icall',
1373 '-fno-sanitize-trap=cfi-icall'] )
1374 cfi_flags += '-fno-sanitize-trap=cfi-icall'
1375 else
1376 error('-fno-sanitize-trap=cfi-icall is not supported by the compiler')
1377 endif
1378 endif
Marc-André Lureau5fc06172021-01-14 16:56:02 +04001379 add_global_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
1380 add_global_link_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
Daniele Buono9e62ba42020-12-04 18:06:14 -05001381endif
1382
Joelle van Dyne14176c82021-03-15 11:03:38 -07001383have_host_block_device = (targetos != 'darwin' or
1384 cc.has_header('IOKit/storage/IOMedia.h'))
1385
Paolo Bonzini69202b42020-11-17 14:46:21 +01001386have_virtfs = (targetos == 'linux' and
1387 have_system and
1388 libattr.found() and
1389 libcap_ng.found())
1390
Philippe Mathieu-Daudé3a489d32021-01-20 16:15:39 +01001391have_virtfs_proxy_helper = have_virtfs and have_tools
1392
Paolo Bonzini69202b42020-11-17 14:46:21 +01001393if get_option('virtfs').enabled()
1394 if not have_virtfs
1395 if targetos != 'linux'
1396 error('virtio-9p (virtfs) requires Linux')
1397 elif not libcap_ng.found() or not libattr.found()
1398 error('virtio-9p (virtfs) requires libcap-ng-devel and libattr-devel')
1399 elif not have_system
1400 error('virtio-9p (virtfs) needs system emulation support')
1401 endif
1402 endif
1403elif get_option('virtfs').disabled()
1404 have_virtfs = false
1405endif
1406
Paolo Bonzini9c29b742021-10-07 15:08:14 +02001407foreach k : get_option('trace_backends')
1408 config_host_data.set('CONFIG_TRACE_' + k.to_upper(), true)
1409endforeach
1410config_host_data.set_quoted('CONFIG_TRACE_FILE', get_option('trace_file'))
1411
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04001412config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir'))
1413config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix'))
1414config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir)
1415config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir)
1416config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir)
1417config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath'))
1418config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir'))
1419config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir)
1420config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir'))
1421config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
1422config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir)
1423config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
1424
Paolo Bonzinif7f2d652020-11-17 14:45:24 +01001425config_host_data.set('CONFIG_ATTR', libattr.found())
Paolo Bonzini8c6d4ff2020-11-17 13:02:17 +01001426config_host_data.set('CONFIG_BRLAPI', brlapi.found())
Paolo Bonzinib4e312e2020-09-01 11:28:59 -04001427config_host_data.set('CONFIG_COCOA', cocoa.found())
Paolo Bonzini537b7242021-10-07 15:08:12 +02001428config_host_data.set('CONFIG_FUZZ', get_option('fuzzing'))
Paolo Bonziniaf2bb992021-10-07 15:08:17 +02001429config_host_data.set('CONFIG_GCOV', get_option('b_coverage'))
Paolo Bonzinif01496a2020-09-16 17:54:14 +02001430config_host_data.set('CONFIG_LIBUDEV', libudev.found())
Paolo Bonzini0c32a0a2020-11-17 13:11:25 +01001431config_host_data.set('CONFIG_LZO', lzo.found())
Paolo Bonzini6ec0e152020-09-16 18:07:29 +02001432config_host_data.set('CONFIG_MPATH', mpathpersist.found())
1433config_host_data.set('CONFIG_MPATH_NEW_API', mpathpersist_new_api)
Paolo Bonzinif9cd86f2020-11-17 12:43:15 +01001434config_host_data.set('CONFIG_CURL', curl.found())
Yonggang Luo5285e592020-10-13 07:43:48 +08001435config_host_data.set('CONFIG_CURSES', curses.found())
Thomas Huth8bc51842021-07-13 13:09:02 +02001436config_host_data.set('CONFIG_GBM', gbm.found())
Paolo Bonzini08821ca2020-11-17 13:01:26 +01001437config_host_data.set('CONFIG_GLUSTERFS', glusterfs.found())
1438if glusterfs.found()
1439 config_host_data.set('CONFIG_GLUSTERFS_XLATOR_OPT', glusterfs.version().version_compare('>=4'))
1440 config_host_data.set('CONFIG_GLUSTERFS_DISCARD', glusterfs.version().version_compare('>=5'))
1441 config_host_data.set('CONFIG_GLUSTERFS_FALLOCATE', glusterfs.version().version_compare('>=6'))
1442 config_host_data.set('CONFIG_GLUSTERFS_ZEROFILL', glusterfs.version().version_compare('>=6'))
1443 config_host_data.set('CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT', glusterfs_ftruncate_has_stat)
1444 config_host_data.set('CONFIG_GLUSTERFS_IOCB_HAS_STAT', glusterfs_iocb_has_stat)
1445endif
Paolo Bonzini1b695472021-01-07 14:02:29 +01001446config_host_data.set('CONFIG_GTK', gtk.found())
Paolo Bonzinic23d7b42021-06-03 11:31:35 +02001447config_host_data.set('CONFIG_VTE', vte.found())
Paolo Bonzinif7f2d652020-11-17 14:45:24 +01001448config_host_data.set('CONFIG_LIBATTR', have_old_libattr)
Paolo Bonzini727c8bb2020-11-17 14:46:58 +01001449config_host_data.set('CONFIG_LIBCAP_NG', libcap_ng.found())
Andrew Melnychenko46627f42021-05-14 14:48:32 +03001450config_host_data.set('CONFIG_EBPF', libbpf.found())
Paolo Bonzini63a7f852021-07-08 13:50:06 +02001451config_host_data.set('CONFIG_LIBDAXCTL', libdaxctl.found())
Paolo Bonzini9db405a2020-11-17 13:11:25 +01001452config_host_data.set('CONFIG_LIBISCSI', libiscsi.found())
Paolo Bonzini30045c02020-11-17 13:11:25 +01001453config_host_data.set('CONFIG_LIBNFS', libnfs.found())
Paolo Bonziniff66f3e2021-10-07 15:08:20 +02001454config_host_data.set('CONFIG_LINUX_AIO', libaio.found())
Paolo Bonzini63a7f852021-07-08 13:50:06 +02001455config_host_data.set('CONFIG_LINUX_IO_URING', linux_io_uring.found())
1456config_host_data.set('CONFIG_LIBPMEM', libpmem.found())
Paolo Bonzinifabd1e92020-11-17 13:11:25 +01001457config_host_data.set('CONFIG_RBD', rbd.found())
Paolo Bonzini35be72b2020-02-06 14:17:15 +01001458config_host_data.set('CONFIG_SDL', sdl.found())
1459config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found())
Paolo Bonzini90835c22020-11-17 14:22:24 +01001460config_host_data.set('CONFIG_SECCOMP', seccomp.found())
Paolo Bonzini241611e2020-11-17 13:32:34 +01001461config_host_data.set('CONFIG_SNAPPY', snappy.found())
Paolo Bonzini90540f32021-06-03 11:15:26 +02001462config_host_data.set('CONFIG_USB_LIBUSB', libusb.found())
Paolo Bonzinie1723992021-10-07 15:08:21 +02001463config_host_data.set('CONFIG_VDE', vde.found())
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +00001464config_host_data.set('CONFIG_VHOST_USER_BLK_SERVER', have_vhost_user_blk_server)
Paolo Bonzinia0b93232020-02-06 15:48:52 +01001465config_host_data.set('CONFIG_VNC', vnc.found())
1466config_host_data.set('CONFIG_VNC_JPEG', jpeg.found())
1467config_host_data.set('CONFIG_VNC_PNG', png.found())
1468config_host_data.set('CONFIG_VNC_SASL', sasl.found())
Paolo Bonzini69202b42020-11-17 14:46:21 +01001469config_host_data.set('CONFIG_VIRTFS', have_virtfs)
Paolo Bonzini63a7f852021-07-08 13:50:06 +02001470config_host_data.set('CONFIG_VTE', vte.found())
Laurent Vivier4113f4c2020-08-24 17:24:29 +02001471config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found())
Marc-André Lureauaf04e892020-08-28 15:07:25 +04001472config_host_data.set('CONFIG_KEYUTILS', keyutils.found())
Marc-André Lureau3909def2020-08-28 15:07:33 +04001473config_host_data.set('CONFIG_GETTID', has_gettid)
Paolo Bonzini57612512021-06-03 11:15:26 +02001474config_host_data.set('CONFIG_GNUTLS', gnutls.found())
Daniel P. Berrangécc4c7c72021-06-30 17:20:02 +01001475config_host_data.set('CONFIG_GNUTLS_CRYPTO', gnutls_crypto.found())
Paolo Bonzini57612512021-06-03 11:15:26 +02001476config_host_data.set('CONFIG_GCRYPT', gcrypt.found())
1477config_host_data.set('CONFIG_NETTLE', nettle.found())
1478config_host_data.set('CONFIG_QEMU_PRIVATE_XTS', xts == 'private')
Paolo Bonziniaa087962020-09-01 11:15:30 -04001479config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim)
Max Reitz84e319a2020-11-02 17:18:55 +01001480config_host_data.set('CONFIG_STATX', has_statx)
Paolo Bonzinib1def332020-11-17 13:37:39 +01001481config_host_data.set('CONFIG_ZSTD', zstd.found())
Max Reitza484a712020-10-27 20:05:41 +01001482config_host_data.set('CONFIG_FUSE', fuse.found())
Max Reitzdf4ea702020-10-27 20:05:46 +01001483config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
Paolo Bonzini9d710372021-01-07 13:54:22 +01001484config_host_data.set('CONFIG_X11', x11.found())
Daniele Buono9e62ba42020-12-04 18:06:14 -05001485config_host_data.set('CONFIG_CFI', get_option('cfi'))
Paolo Bonzini859aef02020-08-04 18:14:26 +02001486config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version()))
1487config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0])
1488config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1])
1489config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2])
1490
Paolo Bonzinia6305082021-10-07 15:08:15 +02001491config_host_data.set_quoted('CONFIG_HOST_DSOSUF', host_dsosuf)
Paolo Bonzini69d8de72021-06-03 11:56:11 +02001492config_host_data.set('HAVE_HOST_BLOCK_DEVICE', have_host_block_device)
Paolo Bonzini269506d2021-10-07 15:08:16 +02001493config_host_data.set('HOST_WORDS_BIGENDIAN', host_machine.endian() == 'big')
Paolo Bonzini69d8de72021-06-03 11:56:11 +02001494
1495# has_header
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001496config_host_data.set('CONFIG_EPOLL', cc.has_header('sys/epoll.h'))
Paolo Bonzinid47a8b32021-06-03 12:02:00 +02001497config_host_data.set('CONFIG_LINUX_MAGIC_H', cc.has_header('linux/magic.h'))
1498config_host_data.set('CONFIG_VALGRIND_H', cc.has_header('valgrind/valgrind.h'))
Thomas Huth48f670e2020-11-18 18:10:52 +01001499config_host_data.set('HAVE_BTRFS_H', cc.has_header('linux/btrfs.h'))
Thomas Huth2964be52020-11-18 18:10:49 +01001500config_host_data.set('HAVE_DRM_H', cc.has_header('libdrm/drm.h'))
Thomas Huth2802d912020-11-18 18:10:48 +01001501config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h'))
Paolo Bonzini69d8de72021-06-03 11:56:11 +02001502config_host_data.set('HAVE_SYS_DISK_H', cc.has_header('sys/disk.h'))
Thomas Huthded5d782020-11-14 11:10:11 +01001503config_host_data.set('HAVE_SYS_IOCCOM_H', cc.has_header('sys/ioccom.h'))
Thomas Huth4a9d5f82020-11-18 18:10:51 +01001504config_host_data.set('HAVE_SYS_KCOV_H', cc.has_header('sys/kcov.h'))
Thomas Huthded5d782020-11-14 11:10:11 +01001505
Paolo Bonzini69d8de72021-06-03 11:56:11 +02001506# has_function
Paolo Bonzinia620fbe2021-06-03 13:04:47 +02001507config_host_data.set('CONFIG_ACCEPT4', cc.has_function('accept4'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001508config_host_data.set('CONFIG_CLOCK_ADJTIME', cc.has_function('clock_adjtime'))
1509config_host_data.set('CONFIG_DUP3', cc.has_function('dup3'))
1510config_host_data.set('CONFIG_FALLOCATE', cc.has_function('fallocate'))
1511config_host_data.set('CONFIG_POSIX_FALLOCATE', cc.has_function('posix_fallocate'))
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001512config_host_data.set('CONFIG_POSIX_MEMALIGN', cc.has_function('posix_memalign'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001513config_host_data.set('CONFIG_PPOLL', cc.has_function('ppoll'))
Peter Maydell2b9f74e2021-01-26 15:58:46 +00001514config_host_data.set('CONFIG_PREADV', cc.has_function('preadv', prefix: '#include <sys/uio.h>'))
Paolo Bonzinied3b3f12021-06-03 12:14:48 +02001515config_host_data.set('CONFIG_SEM_TIMEDWAIT', cc.has_function('sem_timedwait', dependencies: threads))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001516config_host_data.set('CONFIG_SENDFILE', cc.has_function('sendfile'))
1517config_host_data.set('CONFIG_SETNS', cc.has_function('setns') and cc.has_function('unshare'))
1518config_host_data.set('CONFIG_SYNCFS', cc.has_function('syncfs'))
1519config_host_data.set('CONFIG_SYNC_FILE_RANGE', cc.has_function('sync_file_range'))
1520config_host_data.set('CONFIG_TIMERFD', cc.has_function('timerfd_create'))
Paolo Bonzinibe7e89f2021-06-03 12:02:00 +02001521config_host_data.set('HAVE_COPY_FILE_RANGE', cc.has_function('copy_file_range'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001522config_host_data.set('HAVE_OPENPTY', cc.has_function('openpty', dependencies: util))
Paolo Bonzinied3b3f12021-06-03 12:14:48 +02001523config_host_data.set('HAVE_STRCHRNUL', cc.has_function('strchrnul'))
Paolo Bonzini69d8de72021-06-03 11:56:11 +02001524config_host_data.set('HAVE_SYSTEM_FUNCTION', cc.has_function('system', prefix: '#include <stdlib.h>'))
Peter Maydell2b9f74e2021-01-26 15:58:46 +00001525
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001526# has_header_symbol
1527config_host_data.set('CONFIG_BYTESWAP_H',
1528 cc.has_header_symbol('byteswap.h', 'bswap_32'))
1529config_host_data.set('CONFIG_EPOLL_CREATE1',
1530 cc.has_header_symbol('sys/epoll.h', 'epoll_create1'))
Paolo Bonzinid47a8b32021-06-03 12:02:00 +02001531config_host_data.set('CONFIG_HAS_ENVIRON',
1532 cc.has_header_symbol('unistd.h', 'environ', prefix: gnu_source_prefix))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001533config_host_data.set('CONFIG_FALLOCATE_PUNCH_HOLE',
1534 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_PUNCH_HOLE') and
1535 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_KEEP_SIZE'))
1536config_host_data.set('CONFIG_FALLOCATE_ZERO_RANGE',
1537 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_ZERO_RANGE'))
1538config_host_data.set('CONFIG_FIEMAP',
1539 cc.has_header('linux/fiemap.h') and
1540 cc.has_header_symbol('linux/fs.h', 'FS_IOC_FIEMAP'))
Paolo Bonzinibe7e89f2021-06-03 12:02:00 +02001541config_host_data.set('CONFIG_GETRANDOM',
1542 cc.has_function('getrandom') and
1543 cc.has_header_symbol('sys/random.h', 'GRND_NONBLOCK'))
Paolo Bonzinia620fbe2021-06-03 13:04:47 +02001544config_host_data.set('CONFIG_INOTIFY',
1545 cc.has_header_symbol('sys/inotify.h', 'inotify_init'))
1546config_host_data.set('CONFIG_INOTIFY1',
1547 cc.has_header_symbol('sys/inotify.h', 'inotify_init1'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001548config_host_data.set('CONFIG_MACHINE_BSWAP_H',
1549 cc.has_header_symbol('machine/bswap.h', 'bswap32',
1550 prefix: '''#include <sys/endian.h>
1551 #include <sys/types.h>'''))
1552config_host_data.set('CONFIG_PRCTL_PR_SET_TIMERSLACK',
1553 cc.has_header_symbol('sys/prctl.h', 'PR_SET_TIMERSLACK'))
Paolo Bonzinibe7e89f2021-06-03 12:02:00 +02001554config_host_data.set('CONFIG_RTNETLINK',
1555 cc.has_header_symbol('linux/rtnetlink.h', 'IFLA_PROTO_DOWN'))
1556config_host_data.set('CONFIG_SYSMACROS',
1557 cc.has_header_symbol('sys/sysmacros.h', 'makedev'))
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001558config_host_data.set('HAVE_OPTRESET',
1559 cc.has_header_symbol('getopt.h', 'optreset'))
Paolo Bonzinibe7e89f2021-06-03 12:02:00 +02001560config_host_data.set('HAVE_UTMPX',
1561 cc.has_header_symbol('utmpx.h', 'struct utmpx'))
Marc-André Lureau653163f2021-09-07 16:19:13 +04001562config_host_data.set('HAVE_IPPROTO_MPTCP',
1563 cc.has_header_symbol('netinet/in.h', 'IPPROTO_MPTCP'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001564
1565# has_member
1566config_host_data.set('HAVE_SIGEV_NOTIFY_THREAD_ID',
1567 cc.has_member('struct sigevent', 'sigev_notify_thread_id',
1568 prefix: '#include <signal.h>'))
Paolo Bonzinied3b3f12021-06-03 12:14:48 +02001569config_host_data.set('HAVE_STRUCT_STAT_ST_ATIM',
1570 cc.has_member('struct stat', 'st_atim',
1571 prefix: '#include <sys/stat.h>'))
Paolo Bonzinie66420a2021-06-03 12:10:05 +02001572
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001573config_host_data.set('CONFIG_EVENTFD', cc.links('''
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001574 #include <sys/eventfd.h>
1575 int main(void) { return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001576config_host_data.set('CONFIG_FDATASYNC', cc.links(gnu_source_prefix + '''
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001577 #include <unistd.h>
1578 int main(void) {
1579 #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
1580 return fdatasync(0);
1581 #else
1582 #error Not supported
1583 #endif
1584 }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001585config_host_data.set('CONFIG_MADVISE', cc.links(gnu_source_prefix + '''
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001586 #include <sys/types.h>
1587 #include <sys/mman.h>
1588 #include <stddef.h>
1589 int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001590config_host_data.set('CONFIG_MEMFD', cc.links(gnu_source_prefix + '''
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001591 #include <sys/mman.h>
1592 int main(void) { return memfd_create("foo", MFD_ALLOW_SEALING); }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001593config_host_data.set('CONFIG_OPEN_BY_HANDLE', cc.links(gnu_source_prefix + '''
Paolo Bonzinid47a8b32021-06-03 12:02:00 +02001594 #include <fcntl.h>
1595 #if !defined(AT_EMPTY_PATH)
1596 # error missing definition
1597 #else
1598 int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
1599 #endif'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001600config_host_data.set('CONFIG_PIPE2', cc.links(gnu_source_prefix + '''
Paolo Bonzinia620fbe2021-06-03 13:04:47 +02001601 #include <unistd.h>
1602 #include <fcntl.h>
1603
1604 int main(void)
1605 {
1606 int pipefd[2];
1607 return pipe2(pipefd, O_CLOEXEC);
1608 }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001609config_host_data.set('CONFIG_POSIX_MADVISE', cc.links(gnu_source_prefix + '''
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001610 #include <sys/mman.h>
1611 #include <stddef.h>
1612 int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }'''))
Paolo Bonzini10f6b232021-10-07 15:08:19 +02001613
1614config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_W_TID', cc.links('''
1615 #include <pthread.h>
1616
1617 static void *f(void *p) { return NULL; }
1618 int main(void)
1619 {
1620 pthread_t thread;
1621 pthread_create(&thread, 0, f, 0);
1622 pthread_setname_np(thread, "QEMU");
1623 return 0;
1624 }''', dependencies: threads))
1625config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_WO_TID', cc.links('''
1626 #include <pthread.h>
1627
1628 static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; }
1629 int main(void)
1630 {
1631 pthread_t thread;
1632 pthread_create(&thread, 0, f, 0);
1633 return 0;
1634 }''', dependencies: threads))
1635
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001636config_host_data.set('CONFIG_SIGNALFD', cc.links(gnu_source_prefix + '''
Kacper Słomiński6bd17dc2021-09-05 03:16:22 +02001637 #include <sys/signalfd.h>
1638 #include <stddef.h>
1639 int main(void) { return signalfd(-1, NULL, SFD_CLOEXEC); }'''))
Paolo Bonzini904ad5e2021-07-07 16:35:26 +02001640config_host_data.set('CONFIG_SPLICE', cc.links(gnu_source_prefix + '''
Paolo Bonzinia620fbe2021-06-03 13:04:47 +02001641 #include <unistd.h>
1642 #include <fcntl.h>
1643 #include <limits.h>
1644
1645 int main(void)
1646 {
1647 int len, fd = 0;
1648 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1649 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1650 return 0;
1651 }'''))
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001652
Paolo Bonzini96a63ae2021-10-07 15:08:18 +02001653config_host_data.set('HAVE_MLOCKALL', cc.links(gnu_source_prefix + '''
1654 #include <sys/mman.h>
1655 int main(int argc, char *argv[]) {
1656 return mlockall(MCL_FUTURE);
1657 }'''))
1658
Paolo Bonzini837b84b2021-10-07 15:08:22 +02001659have_netmap = false
1660if not get_option('netmap').disabled() and have_system
1661 have_netmap = cc.compiles('''
1662 #include <inttypes.h>
1663 #include <net/if.h>
1664 #include <net/netmap.h>
1665 #include <net/netmap_user.h>
1666 #if (NETMAP_API < 11) || (NETMAP_API > 15)
1667 #error
1668 #endif
1669 int main(void) { return 0; }''')
1670 if not have_netmap and get_option('netmap').enabled()
1671 error('Netmap headers not available')
1672 endif
1673endif
1674config_host_data.set('CONFIG_NETMAP', have_netmap)
1675
Paolo Bonzini96a63ae2021-10-07 15:08:18 +02001676# Work around a system header bug with some kernel/XFS header
1677# versions where they both try to define 'struct fsxattr':
1678# xfs headers will not try to redefine structs from linux headers
1679# if this macro is set.
1680config_host_data.set('HAVE_FSXATTR', cc.links('''
1681 #include <linux/fs.h>'
1682 struct fsxattr foo;
1683 int main(void) {
1684 return 0;
1685 }'''))
1686
Paolo Bonzinie46bd552021-06-03 11:57:04 +02001687# Some versions of Mac OS X incorrectly define SIZE_MAX
1688config_host_data.set('HAVE_BROKEN_SIZE_MAX', not cc.compiles('''
1689 #include <stdint.h>
1690 #include <stdio.h>
1691 int main(int argc, char *argv[]) {
1692 return printf("%zu", SIZE_MAX);
1693 }''', args: ['-Werror']))
1694
Paolo Bonzinia76a1f62021-10-13 10:04:24 +02001695ignored = ['CONFIG_QEMU_INTERP_PREFIX', # actually per-target
1696 'HAVE_GDB_BIN']
Paolo Bonzini87430d52021-10-07 15:06:09 +02001697arrays = ['CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST']
Paolo Bonzinia6305082021-10-07 15:08:15 +02001698strings = ['CONFIG_IASL']
Paolo Bonzini859aef02020-08-04 18:14:26 +02001699foreach k, v: config_host
Paolo Bonzini765686d2020-09-18 06:37:21 -04001700 if ignored.contains(k)
1701 # do nothing
1702 elif arrays.contains(k)
Paolo Bonzini859aef02020-08-04 18:14:26 +02001703 if v != ''
1704 v = '"' + '", "'.join(v.split()) + '", '
1705 endif
1706 config_host_data.set(k, v)
1707 elif k == 'ARCH'
1708 config_host_data.set('HOST_' + v.to_upper(), 1)
1709 elif strings.contains(k)
Paolo Bonzini859aef02020-08-04 18:14:26 +02001710 config_host_data.set_quoted(k, v)
Paolo Bonzini96a63ae2021-10-07 15:08:18 +02001711 elif k.startswith('CONFIG_')
Paolo Bonzini859aef02020-08-04 18:14:26 +02001712 config_host_data.set(k, v == 'y' ? 1 : v)
1713 endif
1714endforeach
Paolo Bonzini859aef02020-08-04 18:14:26 +02001715
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001716########################
1717# Target configuration #
1718########################
1719
Paolo Bonzini2becc362020-02-03 11:42:03 +01001720minikconf = find_program('scripts/minikconf.py')
Paolo Bonzini05512f52020-09-16 15:31:11 -04001721config_all = {}
Paolo Bonzinia98006b2020-09-01 05:32:23 -04001722config_all_devices = {}
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001723config_all_disas = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001724config_devices_mak_list = []
1725config_devices_h = {}
Paolo Bonzini859aef02020-08-04 18:14:26 +02001726config_target_h = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001727config_target_mak = {}
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001728
1729disassemblers = {
1730 'alpha' : ['CONFIG_ALPHA_DIS'],
1731 'arm' : ['CONFIG_ARM_DIS'],
1732 'avr' : ['CONFIG_AVR_DIS'],
1733 'cris' : ['CONFIG_CRIS_DIS'],
Taylor Simpson3e7a84e2021-02-07 23:46:24 -06001734 'hexagon' : ['CONFIG_HEXAGON_DIS'],
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001735 'hppa' : ['CONFIG_HPPA_DIS'],
1736 'i386' : ['CONFIG_I386_DIS'],
1737 'x86_64' : ['CONFIG_I386_DIS'],
1738 'x32' : ['CONFIG_I386_DIS'],
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001739 'm68k' : ['CONFIG_M68K_DIS'],
1740 'microblaze' : ['CONFIG_MICROBLAZE_DIS'],
1741 'mips' : ['CONFIG_MIPS_DIS'],
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001742 'nios2' : ['CONFIG_NIOS2_DIS'],
1743 'or1k' : ['CONFIG_OPENRISC_DIS'],
1744 'ppc' : ['CONFIG_PPC_DIS'],
1745 'riscv' : ['CONFIG_RISCV_DIS'],
1746 'rx' : ['CONFIG_RX_DIS'],
1747 's390' : ['CONFIG_S390_DIS'],
1748 'sh4' : ['CONFIG_SH4_DIS'],
1749 'sparc' : ['CONFIG_SPARC_DIS'],
1750 'xtensa' : ['CONFIG_XTENSA_DIS'],
1751}
1752if link_language == 'cpp'
1753 disassemblers += {
1754 'aarch64' : [ 'CONFIG_ARM_A64_DIS'],
1755 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'],
1756 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'],
1757 }
1758endif
1759
Paolo Bonzinie1fbd2c2021-06-03 12:02:00 +02001760have_ivshmem = config_host_data.get('CONFIG_EVENTFD')
Paolo Bonzini0a189112020-11-17 14:58:32 +01001761host_kconfig = \
Paolo Bonzini537b7242021-10-07 15:08:12 +02001762 (get_option('fuzzing') ? ['CONFIG_FUZZ=y'] : []) + \
Paolo Bonzini0a189112020-11-17 14:58:32 +01001763 ('CONFIG_TPM' in config_host ? ['CONFIG_TPM=y'] : []) + \
1764 ('CONFIG_SPICE' in config_host ? ['CONFIG_SPICE=y'] : []) + \
Paolo Bonziniccd250a2021-06-03 12:50:17 +02001765 (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \
Paolo Bonzini0a189112020-11-17 14:58:32 +01001766 ('CONFIG_OPENGL' in config_host ? ['CONFIG_OPENGL=y'] : []) + \
Paolo Bonzini9d710372021-01-07 13:54:22 +01001767 (x11.found() ? ['CONFIG_X11=y'] : []) + \
Paolo Bonzini0a189112020-11-17 14:58:32 +01001768 ('CONFIG_VHOST_USER' in config_host ? ['CONFIG_VHOST_USER=y'] : []) + \
1769 ('CONFIG_VHOST_VDPA' in config_host ? ['CONFIG_VHOST_VDPA=y'] : []) + \
1770 ('CONFIG_VHOST_KERNEL' in config_host ? ['CONFIG_VHOST_KERNEL=y'] : []) + \
Paolo Bonzini69202b42020-11-17 14:46:21 +01001771 (have_virtfs ? ['CONFIG_VIRTFS=y'] : []) + \
Paolo Bonzini0a189112020-11-17 14:58:32 +01001772 ('CONFIG_LINUX' in config_host ? ['CONFIG_LINUX=y'] : []) + \
Jagannathan Raman3090de62021-01-29 11:46:05 -05001773 ('CONFIG_PVRDMA' in config_host ? ['CONFIG_PVRDMA=y'] : []) + \
Paolo Bonzini106ad1f2021-02-17 16:24:25 +01001774 (multiprocess_allowed ? ['CONFIG_MULTIPROCESS_ALLOWED=y'] : [])
Paolo Bonzini0a189112020-11-17 14:58:32 +01001775
Paolo Bonzinia9a74902020-09-21 05:11:01 -04001776ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ]
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001777
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001778default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host
1779actual_target_dirs = []
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001780fdt_required = []
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001781foreach target : target_dirs
Paolo Bonzini765686d2020-09-18 06:37:21 -04001782 config_target = { 'TARGET_NAME': target.split('-')[0] }
1783 if target.endswith('linux-user')
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001784 if targetos != 'linux'
1785 if default_targets
1786 continue
1787 endif
1788 error('Target @0@ is only available on a Linux host'.format(target))
1789 endif
Paolo Bonzini765686d2020-09-18 06:37:21 -04001790 config_target += { 'CONFIG_LINUX_USER': 'y' }
1791 elif target.endswith('bsd-user')
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001792 if 'CONFIG_BSD' not in config_host
1793 if default_targets
1794 continue
1795 endif
1796 error('Target @0@ is only available on a BSD host'.format(target))
1797 endif
Paolo Bonzini765686d2020-09-18 06:37:21 -04001798 config_target += { 'CONFIG_BSD_USER': 'y' }
1799 elif target.endswith('softmmu')
1800 config_target += { 'CONFIG_SOFTMMU': 'y' }
1801 endif
1802 if target.endswith('-user')
1803 config_target += {
1804 'CONFIG_USER_ONLY': 'y',
1805 'CONFIG_QEMU_INTERP_PREFIX':
1806 config_host['CONFIG_QEMU_INTERP_PREFIX'].format(config_target['TARGET_NAME'])
1807 }
1808 endif
Paolo Bonzini859aef02020-08-04 18:14:26 +02001809
Paolo Bonzini0a189112020-11-17 14:58:32 +01001810 accel_kconfig = []
Paolo Bonzini8a199802020-09-18 05:37:01 -04001811 foreach sym: accelerators
1812 if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, [])
1813 config_target += { sym: 'y' }
1814 config_all += { sym: 'y' }
Paolo Bonzini23a77b22020-12-14 12:01:45 +01001815 if sym == 'CONFIG_TCG' and tcg_arch == 'tci'
1816 config_target += { 'CONFIG_TCG_INTERPRETER': 'y' }
1817 elif sym == 'CONFIG_XEN' and have_xen_pci_passthrough
Paolo Bonzini8a199802020-09-18 05:37:01 -04001818 config_target += { 'CONFIG_XEN_PCI_PASSTHROUGH': 'y' }
1819 endif
Gerd Hoffmanndae0ec12021-06-24 12:38:31 +02001820 if target in modular_tcg
1821 config_target += { 'CONFIG_TCG_MODULAR': 'y' }
1822 else
1823 config_target += { 'CONFIG_TCG_BUILTIN': 'y' }
1824 endif
Paolo Bonzini0a189112020-11-17 14:58:32 +01001825 accel_kconfig += [ sym + '=y' ]
Paolo Bonzini8a199802020-09-18 05:37:01 -04001826 endif
1827 endforeach
Paolo Bonzini0a189112020-11-17 14:58:32 +01001828 if accel_kconfig.length() == 0
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001829 if default_targets
1830 continue
1831 endif
1832 error('No accelerator available for target @0@'.format(target))
1833 endif
Paolo Bonzini8a199802020-09-18 05:37:01 -04001834
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001835 actual_target_dirs += target
Alex Bennée812b31d2021-07-07 14:17:43 +01001836 config_target += keyval.load('configs/targets' / target + '.mak')
Paolo Bonzinia9a74902020-09-21 05:11:01 -04001837 config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
Paolo Bonzini765686d2020-09-18 06:37:21 -04001838
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001839 if 'TARGET_NEED_FDT' in config_target
1840 fdt_required += target
1841 endif
1842
Paolo Bonzinifa731682020-09-21 05:19:07 -04001843 # Add default keys
1844 if 'TARGET_BASE_ARCH' not in config_target
1845 config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}
1846 endif
1847 if 'TARGET_ABI_DIR' not in config_target
1848 config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']}
1849 endif
Paolo Bonzini859aef02020-08-04 18:14:26 +02001850
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001851 foreach k, v: disassemblers
1852 if config_host['ARCH'].startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k)
1853 foreach sym: v
1854 config_target += { sym: 'y' }
1855 config_all_disas += { sym: 'y' }
1856 endforeach
1857 endif
1858 endforeach
1859
Paolo Bonzini859aef02020-08-04 18:14:26 +02001860 config_target_data = configuration_data()
1861 foreach k, v: config_target
1862 if not k.startswith('TARGET_') and not k.startswith('CONFIG_')
1863 # do nothing
1864 elif ignored.contains(k)
1865 # do nothing
1866 elif k == 'TARGET_BASE_ARCH'
Paolo Bonzinia9a74902020-09-21 05:11:01 -04001867 # Note that TARGET_BASE_ARCH ends up in config-target.h but it is
1868 # not used to select files from sourcesets.
Paolo Bonzini859aef02020-08-04 18:14:26 +02001869 config_target_data.set('TARGET_' + v.to_upper(), 1)
Paolo Bonzini765686d2020-09-18 06:37:21 -04001870 elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX'
Paolo Bonzini859aef02020-08-04 18:14:26 +02001871 config_target_data.set_quoted(k, v)
1872 elif v == 'y'
1873 config_target_data.set(k, 1)
1874 else
1875 config_target_data.set(k, v)
1876 endif
1877 endforeach
Peter Maydellcb2c5532021-07-30 11:59:43 +01001878 config_target_data.set('QEMU_ARCH',
1879 'QEMU_ARCH_' + config_target['TARGET_BASE_ARCH'].to_upper())
Paolo Bonzini859aef02020-08-04 18:14:26 +02001880 config_target_h += {target: configure_file(output: target + '-config-target.h',
1881 configuration: config_target_data)}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001882
1883 if target.endswith('-softmmu')
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01001884 config_input = meson.get_external_property(target, 'default')
Paolo Bonzini2becc362020-02-03 11:42:03 +01001885 config_devices_mak = target + '-config-devices.mak'
1886 config_devices_mak = configure_file(
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01001887 input: ['configs/devices' / target / config_input + '.mak', 'Kconfig'],
Paolo Bonzini2becc362020-02-03 11:42:03 +01001888 output: config_devices_mak,
1889 depfile: config_devices_mak + '.d',
1890 capture: true,
Paolo Bonzini7bc3ca72020-11-20 08:38:22 +01001891 command: [minikconf,
1892 get_option('default_devices') ? '--defconfig' : '--allnoconfig',
Paolo Bonzini2becc362020-02-03 11:42:03 +01001893 config_devices_mak, '@DEPFILE@', '@INPUT@',
Philippe Mathieu-Daudéf4063f92021-07-07 14:17:40 +01001894 host_kconfig, accel_kconfig,
1895 'CONFIG_' + config_target['TARGET_ARCH'].to_upper() + '=y'])
Paolo Bonzini859aef02020-08-04 18:14:26 +02001896
1897 config_devices_data = configuration_data()
1898 config_devices = keyval.load(config_devices_mak)
1899 foreach k, v: config_devices
1900 config_devices_data.set(k, 1)
1901 endforeach
Paolo Bonzini2becc362020-02-03 11:42:03 +01001902 config_devices_mak_list += config_devices_mak
Paolo Bonzini859aef02020-08-04 18:14:26 +02001903 config_devices_h += {target: configure_file(output: target + '-config-devices.h',
1904 configuration: config_devices_data)}
1905 config_target += config_devices
Paolo Bonzinia98006b2020-09-01 05:32:23 -04001906 config_all_devices += config_devices
Paolo Bonzini2becc362020-02-03 11:42:03 +01001907 endif
1908 config_target_mak += {target: config_target}
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001909endforeach
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001910target_dirs = actual_target_dirs
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001911
Paolo Bonzini2becc362020-02-03 11:42:03 +01001912# This configuration is used to build files that are shared by
1913# multiple binaries, and then extracted out of the "common"
1914# static_library target.
1915#
1916# We do not use all_sources()/all_dependencies(), because it would
1917# build literally all source files, including devices only used by
1918# targets that are not built for this compilation. The CONFIG_ALL
1919# pseudo symbol replaces it.
1920
Paolo Bonzini05512f52020-09-16 15:31:11 -04001921config_all += config_all_devices
Paolo Bonzini2becc362020-02-03 11:42:03 +01001922config_all += config_host
1923config_all += config_all_disas
1924config_all += {
1925 'CONFIG_XEN': config_host.has_key('CONFIG_XEN_BACKEND'),
1926 'CONFIG_SOFTMMU': have_system,
1927 'CONFIG_USER_ONLY': have_user,
1928 'CONFIG_ALL': true,
1929}
1930
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001931##############
1932# Submodules #
1933##############
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001934
1935capstone = not_found
1936capstone_opt = get_option('capstone')
1937if capstone_opt in ['enabled', 'auto', 'system']
1938 have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile')
Richard Hendersonbcf36862020-09-21 09:46:16 -07001939 capstone = dependency('capstone', version: '>=4.0',
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01001940 kwargs: static_kwargs, method: 'pkg-config',
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001941 required: capstone_opt == 'system' or
1942 capstone_opt == 'enabled' and not have_internal)
Daniel P. Berrangé8f4aea72021-07-09 15:29:31 +01001943
1944 # Some versions of capstone have broken pkg-config file
1945 # that reports a wrong -I path, causing the #include to
1946 # fail later. If the system has such a broken version
1947 # do not use it.
1948 if capstone.found() and not cc.compiles('#include <capstone.h>',
1949 dependencies: [capstone])
1950 capstone = not_found
1951 if capstone_opt == 'system'
1952 error('system capstone requested, it does not appear to work')
1953 endif
1954 endif
1955
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001956 if capstone.found()
1957 capstone_opt = 'system'
1958 elif have_internal
1959 capstone_opt = 'internal'
1960 else
1961 capstone_opt = 'disabled'
1962 endif
1963endif
1964if capstone_opt == 'internal'
1965 capstone_data = configuration_data()
1966 capstone_data.set('CAPSTONE_USE_SYS_DYN_MEM', '1')
1967
1968 capstone_files = files(
1969 'capstone/cs.c',
1970 'capstone/MCInst.c',
1971 'capstone/MCInstrDesc.c',
1972 'capstone/MCRegisterInfo.c',
1973 'capstone/SStream.c',
1974 'capstone/utils.c'
1975 )
1976
1977 if 'CONFIG_ARM_DIS' in config_all_disas
1978 capstone_data.set('CAPSTONE_HAS_ARM', '1')
1979 capstone_files += files(
1980 'capstone/arch/ARM/ARMDisassembler.c',
1981 'capstone/arch/ARM/ARMInstPrinter.c',
1982 'capstone/arch/ARM/ARMMapping.c',
1983 'capstone/arch/ARM/ARMModule.c'
1984 )
1985 endif
1986
1987 # FIXME: This config entry currently depends on a c++ compiler.
1988 # Which is needed for building libvixl, but not for capstone.
1989 if 'CONFIG_ARM_A64_DIS' in config_all_disas
1990 capstone_data.set('CAPSTONE_HAS_ARM64', '1')
1991 capstone_files += files(
1992 'capstone/arch/AArch64/AArch64BaseInfo.c',
1993 'capstone/arch/AArch64/AArch64Disassembler.c',
1994 'capstone/arch/AArch64/AArch64InstPrinter.c',
1995 'capstone/arch/AArch64/AArch64Mapping.c',
1996 'capstone/arch/AArch64/AArch64Module.c'
1997 )
1998 endif
1999
2000 if 'CONFIG_PPC_DIS' in config_all_disas
2001 capstone_data.set('CAPSTONE_HAS_POWERPC', '1')
2002 capstone_files += files(
2003 'capstone/arch/PowerPC/PPCDisassembler.c',
2004 'capstone/arch/PowerPC/PPCInstPrinter.c',
2005 'capstone/arch/PowerPC/PPCMapping.c',
2006 'capstone/arch/PowerPC/PPCModule.c'
2007 )
2008 endif
2009
Richard Henderson3d562842020-01-04 07:24:59 +10002010 if 'CONFIG_S390_DIS' in config_all_disas
2011 capstone_data.set('CAPSTONE_HAS_SYSZ', '1')
2012 capstone_files += files(
2013 'capstone/arch/SystemZ/SystemZDisassembler.c',
2014 'capstone/arch/SystemZ/SystemZInstPrinter.c',
2015 'capstone/arch/SystemZ/SystemZMapping.c',
2016 'capstone/arch/SystemZ/SystemZModule.c',
2017 'capstone/arch/SystemZ/SystemZMCTargetDesc.c'
2018 )
2019 endif
2020
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002021 if 'CONFIG_I386_DIS' in config_all_disas
2022 capstone_data.set('CAPSTONE_HAS_X86', 1)
2023 capstone_files += files(
2024 'capstone/arch/X86/X86Disassembler.c',
2025 'capstone/arch/X86/X86DisassemblerDecoder.c',
2026 'capstone/arch/X86/X86ATTInstPrinter.c',
2027 'capstone/arch/X86/X86IntelInstPrinter.c',
Richard Hendersoneef20e42020-09-14 16:02:02 -07002028 'capstone/arch/X86/X86InstPrinterCommon.c',
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002029 'capstone/arch/X86/X86Mapping.c',
2030 'capstone/arch/X86/X86Module.c'
2031 )
2032 endif
2033
2034 configure_file(output: 'capstone-defs.h', configuration: capstone_data)
2035
2036 capstone_cargs = [
2037 # FIXME: There does not seem to be a way to completely replace the c_args
2038 # that come from add_project_arguments() -- we can only add to them.
2039 # So: disable all warnings with a big hammer.
2040 '-Wno-error', '-w',
2041
2042 # Include all configuration defines via a header file, which will wind up
2043 # as a dependency on the object file, and thus changes here will result
2044 # in a rebuild.
2045 '-include', 'capstone-defs.h'
2046 ]
2047
2048 libcapstone = static_library('capstone',
Philippe Mathieu-Daudé610e7e02021-01-22 21:44:33 +01002049 build_by_default: false,
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002050 sources: capstone_files,
2051 c_args: capstone_cargs,
2052 include_directories: 'capstone/include')
2053 capstone = declare_dependency(link_with: libcapstone,
Richard Hendersoneef20e42020-09-14 16:02:02 -07002054 include_directories: 'capstone/include/capstone')
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002055endif
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002056
2057slirp = not_found
2058slirp_opt = 'disabled'
2059if have_system
2060 slirp_opt = get_option('slirp')
2061 if slirp_opt in ['enabled', 'auto', 'system']
2062 have_internal = fs.exists(meson.current_source_dir() / 'slirp/meson.build')
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01002063 slirp = dependency('slirp', kwargs: static_kwargs,
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002064 method: 'pkg-config',
2065 required: slirp_opt == 'system' or
2066 slirp_opt == 'enabled' and not have_internal)
2067 if slirp.found()
2068 slirp_opt = 'system'
2069 elif have_internal
2070 slirp_opt = 'internal'
2071 else
2072 slirp_opt = 'disabled'
2073 endif
2074 endif
2075 if slirp_opt == 'internal'
2076 slirp_deps = []
2077 if targetos == 'windows'
2078 slirp_deps = cc.find_library('iphlpapi')
Marc-André Lureau43f547b2021-05-18 19:51:11 +04002079 elif targetos == 'darwin'
2080 slirp_deps = cc.find_library('resolv')
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002081 endif
2082 slirp_conf = configuration_data()
2083 slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0])
2084 slirp_conf.set('SLIRP_MINOR_VERSION', meson.project_version().split('.')[1])
2085 slirp_conf.set('SLIRP_MICRO_VERSION', meson.project_version().split('.')[2])
2086 slirp_conf.set_quoted('SLIRP_VERSION_STRING', meson.project_version())
2087 slirp_cargs = ['-DG_LOG_DOMAIN="Slirp"']
2088 slirp_files = [
2089 'slirp/src/arp_table.c',
2090 'slirp/src/bootp.c',
2091 'slirp/src/cksum.c',
2092 'slirp/src/dhcpv6.c',
2093 'slirp/src/dnssearch.c',
2094 'slirp/src/if.c',
2095 'slirp/src/ip6_icmp.c',
2096 'slirp/src/ip6_input.c',
2097 'slirp/src/ip6_output.c',
2098 'slirp/src/ip_icmp.c',
2099 'slirp/src/ip_input.c',
2100 'slirp/src/ip_output.c',
2101 'slirp/src/mbuf.c',
2102 'slirp/src/misc.c',
2103 'slirp/src/ncsi.c',
2104 'slirp/src/ndp_table.c',
2105 'slirp/src/sbuf.c',
2106 'slirp/src/slirp.c',
2107 'slirp/src/socket.c',
2108 'slirp/src/state.c',
2109 'slirp/src/stream.c',
2110 'slirp/src/tcp_input.c',
2111 'slirp/src/tcp_output.c',
2112 'slirp/src/tcp_subr.c',
2113 'slirp/src/tcp_timer.c',
2114 'slirp/src/tftp.c',
2115 'slirp/src/udp.c',
2116 'slirp/src/udp6.c',
2117 'slirp/src/util.c',
2118 'slirp/src/version.c',
2119 'slirp/src/vmstate.c',
2120 ]
2121
2122 configure_file(
2123 input : 'slirp/src/libslirp-version.h.in',
2124 output : 'libslirp-version.h',
2125 configuration: slirp_conf)
2126
2127 slirp_inc = include_directories('slirp', 'slirp/src')
2128 libslirp = static_library('slirp',
Philippe Mathieu-Daudé610e7e02021-01-22 21:44:33 +01002129 build_by_default: false,
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002130 sources: slirp_files,
2131 c_args: slirp_cargs,
2132 include_directories: slirp_inc)
2133 slirp = declare_dependency(link_with: libslirp,
2134 dependencies: slirp_deps,
2135 include_directories: slirp_inc)
2136 endif
2137endif
2138
Daniele Buonoc7153432021-03-03 21:59:38 -05002139# For CFI, we need to compile slirp as a static library together with qemu.
2140# This is because we register slirp functions as callbacks for QEMU Timers.
2141# When using a system-wide shared libslirp, the type information for the
2142# callback is missing and the timer call produces a false positive with CFI.
2143#
2144# Now that slirp_opt has been defined, check if the selected slirp is compatible
2145# with control-flow integrity.
2146if get_option('cfi') and slirp_opt == 'system'
2147 error('Control-Flow Integrity is not compatible with system-wide slirp.' \
2148 + ' Please configure with --enable-slirp=git')
2149endif
2150
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002151fdt = not_found
2152fdt_opt = get_option('fdt')
2153if have_system
2154 if fdt_opt in ['enabled', 'auto', 'system']
2155 have_internal = fs.exists(meson.current_source_dir() / 'dtc/libfdt/Makefile.libfdt')
Paolo Bonzinid7dedf42021-01-26 11:15:33 +01002156 fdt = cc.find_library('fdt', kwargs: static_kwargs,
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002157 required: fdt_opt == 'system' or
2158 fdt_opt == 'enabled' and not have_internal)
2159 if fdt.found() and cc.links('''
2160 #include <libfdt.h>
2161 #include <libfdt_env.h>
2162 int main(void) { fdt_check_full(NULL, 0); return 0; }''',
2163 dependencies: fdt)
2164 fdt_opt = 'system'
Thomas Huth6c228532021-08-27 14:09:00 +02002165 elif fdt_opt == 'system'
2166 error('system libfdt requested, but it is too old (1.5.1 or newer required)')
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002167 elif have_internal
2168 fdt_opt = 'internal'
2169 else
2170 fdt_opt = 'disabled'
Thomas Huth87daf892021-08-27 14:08:59 +02002171 fdt = not_found
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002172 endif
2173 endif
2174 if fdt_opt == 'internal'
2175 fdt_files = files(
2176 'dtc/libfdt/fdt.c',
2177 'dtc/libfdt/fdt_ro.c',
2178 'dtc/libfdt/fdt_wip.c',
2179 'dtc/libfdt/fdt_sw.c',
2180 'dtc/libfdt/fdt_rw.c',
2181 'dtc/libfdt/fdt_strerror.c',
2182 'dtc/libfdt/fdt_empty_tree.c',
2183 'dtc/libfdt/fdt_addresses.c',
2184 'dtc/libfdt/fdt_overlay.c',
2185 'dtc/libfdt/fdt_check.c',
2186 )
2187
2188 fdt_inc = include_directories('dtc/libfdt')
2189 libfdt = static_library('fdt',
Philippe Mathieu-Daudé610e7e02021-01-22 21:44:33 +01002190 build_by_default: false,
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002191 sources: fdt_files,
2192 include_directories: fdt_inc)
2193 fdt = declare_dependency(link_with: libfdt,
2194 include_directories: fdt_inc)
2195 endif
2196endif
2197if not fdt.found() and fdt_required.length() > 0
2198 error('fdt not available but required by targets ' + ', '.join(fdt_required))
2199endif
2200
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002201config_host_data.set('CONFIG_CAPSTONE', capstone.found())
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002202config_host_data.set('CONFIG_FDT', fdt.found())
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002203config_host_data.set('CONFIG_SLIRP', slirp.found())
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002204
Paolo Bonzinia0c91622020-10-07 11:01:51 -04002205#####################
2206# Generated sources #
2207#####################
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002208
Paolo Bonzinia0c91622020-10-07 11:01:51 -04002209genh += configure_file(output: 'config-host.h', configuration: config_host_data)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002210
Marc-André Lureau3f885652019-07-15 18:06:04 +04002211hxtool = find_program('scripts/hxtool')
Marc-André Lureau650b5d52019-07-15 17:36:47 +04002212shaderinclude = find_program('scripts/shaderinclude.pl')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002213qapi_gen = find_program('scripts/qapi-gen.py')
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002214qapi_gen_depends = [ meson.current_source_dir() / 'scripts/qapi/__init__.py',
2215 meson.current_source_dir() / 'scripts/qapi/commands.py',
2216 meson.current_source_dir() / 'scripts/qapi/common.py',
2217 meson.current_source_dir() / 'scripts/qapi/error.py',
2218 meson.current_source_dir() / 'scripts/qapi/events.py',
2219 meson.current_source_dir() / 'scripts/qapi/expr.py',
2220 meson.current_source_dir() / 'scripts/qapi/gen.py',
2221 meson.current_source_dir() / 'scripts/qapi/introspect.py',
2222 meson.current_source_dir() / 'scripts/qapi/parser.py',
2223 meson.current_source_dir() / 'scripts/qapi/schema.py',
2224 meson.current_source_dir() / 'scripts/qapi/source.py',
2225 meson.current_source_dir() / 'scripts/qapi/types.py',
2226 meson.current_source_dir() / 'scripts/qapi/visit.py',
2227 meson.current_source_dir() / 'scripts/qapi/common.py',
2228 meson.current_source_dir() / 'scripts/qapi-gen.py'
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002229]
2230
2231tracetool = [
2232 python, files('scripts/tracetool.py'),
Paolo Bonzini9c29b742021-10-07 15:08:14 +02002233 '--backend=' + ','.join(get_option('trace_backends'))
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002234]
Stefan Hajnoczi0572d6c2021-01-25 11:09:58 +00002235tracetool_depends = files(
2236 'scripts/tracetool/backend/log.py',
2237 'scripts/tracetool/backend/__init__.py',
2238 'scripts/tracetool/backend/dtrace.py',
2239 'scripts/tracetool/backend/ftrace.py',
2240 'scripts/tracetool/backend/simple.py',
2241 'scripts/tracetool/backend/syslog.py',
2242 'scripts/tracetool/backend/ust.py',
2243 'scripts/tracetool/format/tcg_h.py',
2244 'scripts/tracetool/format/ust_events_c.py',
2245 'scripts/tracetool/format/ust_events_h.py',
2246 'scripts/tracetool/format/__init__.py',
2247 'scripts/tracetool/format/d.py',
2248 'scripts/tracetool/format/tcg_helper_c.py',
2249 'scripts/tracetool/format/simpletrace_stap.py',
2250 'scripts/tracetool/format/c.py',
2251 'scripts/tracetool/format/h.py',
2252 'scripts/tracetool/format/tcg_helper_h.py',
2253 'scripts/tracetool/format/log_stap.py',
2254 'scripts/tracetool/format/stap.py',
2255 'scripts/tracetool/format/tcg_helper_wrapper_h.py',
2256 'scripts/tracetool/__init__.py',
2257 'scripts/tracetool/transform.py',
2258 'scripts/tracetool/vcpu.py'
2259)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002260
Marc-André Lureau2c273f32019-07-15 17:10:19 +04002261qemu_version_cmd = [find_program('scripts/qemu-version.sh'),
2262 meson.current_source_dir(),
Paolo Bonzini859aef02020-08-04 18:14:26 +02002263 config_host['PKGVERSION'], meson.project_version()]
Marc-André Lureau2c273f32019-07-15 17:10:19 +04002264qemu_version = custom_target('qemu-version.h',
2265 output: 'qemu-version.h',
2266 command: qemu_version_cmd,
2267 capture: true,
2268 build_by_default: true,
2269 build_always_stale: true)
2270genh += qemu_version
2271
Marc-André Lureau3f885652019-07-15 18:06:04 +04002272hxdep = []
2273hx_headers = [
2274 ['qemu-options.hx', 'qemu-options.def'],
2275 ['qemu-img-cmds.hx', 'qemu-img-cmds.h'],
2276]
2277if have_system
2278 hx_headers += [
2279 ['hmp-commands.hx', 'hmp-commands.h'],
2280 ['hmp-commands-info.hx', 'hmp-commands-info.h'],
2281 ]
2282endif
2283foreach d : hx_headers
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04002284 hxdep += custom_target(d[1],
Marc-André Lureau3f885652019-07-15 18:06:04 +04002285 input: files(d[0]),
2286 output: d[1],
2287 capture: true,
2288 build_by_default: true, # to be removed when added to a target
2289 command: [hxtool, '-h', '@INPUT0@'])
2290endforeach
2291genh += hxdep
2292
Paolo Bonzinia0c91622020-10-07 11:01:51 -04002293###################
2294# Collect sources #
2295###################
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002296
Philippe Mathieu-Daudé55567892020-10-06 14:56:01 +02002297authz_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02002298blockdev_ss = ss.source_set()
2299block_ss = ss.source_set()
2300bsd_user_ss = ss.source_set()
Philippe Mathieu-Daudéc2306d72020-10-06 14:55:57 +02002301chardev_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02002302common_ss = ss.source_set()
Philippe Mathieu-Daudé23893042020-10-06 14:56:00 +02002303crypto_ss = ss.source_set()
Philippe Mathieu-Daudéf78536b2020-10-06 14:55:59 +02002304io_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02002305linux_user_ss = ss.source_set()
2306qmp_ss = ss.source_set()
Philippe Mathieu-Daudéda33fc02020-10-06 14:56:02 +02002307qom_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02002308softmmu_ss = ss.source_set()
2309specific_fuzz_ss = ss.source_set()
2310specific_ss = ss.source_set()
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002311stub_ss = ss.source_set()
2312trace_ss = ss.source_set()
Paolo Bonzini2becc362020-02-03 11:42:03 +01002313user_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02002314util_ss = ss.source_set()
Paolo Bonzini2becc362020-02-03 11:42:03 +01002315
Gerd Hoffmannc94a7b82021-06-24 12:38:29 +02002316# accel modules
2317qtest_module_ss = ss.source_set()
Gerd Hoffmanndae0ec12021-06-24 12:38:31 +02002318tcg_module_ss = ss.source_set()
Gerd Hoffmannc94a7b82021-06-24 12:38:29 +02002319
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002320modules = {}
Gerd Hoffmanndb2e89d2021-06-24 12:38:22 +02002321target_modules = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01002322hw_arch = {}
2323target_arch = {}
2324target_softmmu_arch = {}
Philippe Mathieu-Daudé46369b52021-04-13 11:27:09 +02002325target_user_arch = {}
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002326
2327###############
2328# Trace files #
2329###############
2330
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04002331# TODO: add each directory to the subdirs from its own meson.build, once
2332# we have those
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002333trace_events_subdirs = [
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002334 'crypto',
Philippe Mathieu-Daudé69ff4d02021-01-22 21:44:35 +01002335 'qapi',
2336 'qom',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002337 'monitor',
Philippe Mathieu-Daudé69ff4d02021-01-22 21:44:35 +01002338 'util',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002339]
2340if have_user
2341 trace_events_subdirs += [ 'linux-user' ]
2342endif
2343if have_block
2344 trace_events_subdirs += [
2345 'authz',
2346 'block',
2347 'io',
2348 'nbd',
2349 'scsi',
2350 ]
2351endif
2352if have_system
2353 trace_events_subdirs += [
Philippe Mathieu-Daudé8985db22021-01-22 21:44:36 +01002354 'accel/kvm',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002355 'audio',
2356 'backends',
2357 'backends/tpm',
2358 'chardev',
Andrew Melnychenko46627f42021-05-14 14:48:32 +03002359 'ebpf',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002360 'hw/9pfs',
2361 'hw/acpi',
Hao Wu77c05b02021-01-08 11:09:42 -08002362 'hw/adc',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002363 'hw/alpha',
2364 'hw/arm',
2365 'hw/audio',
2366 'hw/block',
2367 'hw/block/dataplane',
2368 'hw/char',
2369 'hw/display',
2370 'hw/dma',
2371 'hw/hppa',
2372 'hw/hyperv',
2373 'hw/i2c',
2374 'hw/i386',
2375 'hw/i386/xen',
2376 'hw/ide',
2377 'hw/input',
2378 'hw/intc',
2379 'hw/isa',
2380 'hw/mem',
2381 'hw/mips',
2382 'hw/misc',
2383 'hw/misc/macio',
2384 'hw/net',
Vikram Garhwal98e5d7a2020-11-18 11:48:43 -08002385 'hw/net/can',
Mark Cave-Aylandce0e6a22021-09-24 08:37:55 +01002386 'hw/nubus',
Klaus Jensen88eea452021-04-14 22:14:30 +02002387 'hw/nvme',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002388 'hw/nvram',
2389 'hw/pci',
2390 'hw/pci-host',
2391 'hw/ppc',
2392 'hw/rdma',
2393 'hw/rdma/vmw',
2394 'hw/rtc',
2395 'hw/s390x',
2396 'hw/scsi',
2397 'hw/sd',
2398 'hw/sparc',
2399 'hw/sparc64',
2400 'hw/ssi',
2401 'hw/timer',
2402 'hw/tpm',
2403 'hw/usb',
2404 'hw/vfio',
2405 'hw/virtio',
2406 'hw/watchdog',
2407 'hw/xen',
2408 'hw/gpio',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002409 'migration',
2410 'net',
Philippe Mathieu-Daudé8b7a5502020-08-05 15:02:20 +02002411 'softmmu',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002412 'ui',
Elena Ufimtsevaad22c302021-01-29 11:46:10 -05002413 'hw/remote',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002414 ]
2415endif
Philippe Mathieu-Daudé8985db22021-01-22 21:44:36 +01002416if have_system or have_user
2417 trace_events_subdirs += [
2418 'accel/tcg',
2419 'hw/core',
2420 'target/arm',
Alexander Grafa1477da2021-09-16 17:53:58 +02002421 'target/arm/hvf',
Philippe Mathieu-Daudé8985db22021-01-22 21:44:36 +01002422 'target/hppa',
2423 'target/i386',
2424 'target/i386/kvm',
Philippe Mathieu-Daudé34b8ff22021-05-30 09:02:16 +02002425 'target/mips/tcg',
Philippe Mathieu-Daudé8985db22021-01-22 21:44:36 +01002426 'target/ppc',
2427 'target/riscv',
2428 'target/s390x',
Cho, Yu-Chen67043602021-07-07 18:53:23 +08002429 'target/s390x/kvm',
Philippe Mathieu-Daudé8985db22021-01-22 21:44:36 +01002430 'target/sparc',
2431 ]
2432endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002433
Marc-André Lureau0df750e2020-11-25 14:06:37 +04002434vhost_user = not_found
2435if 'CONFIG_VHOST_USER' in config_host
2436 libvhost_user = subproject('libvhost-user')
2437 vhost_user = libvhost_user.get_variable('vhost_user_dep')
2438endif
2439
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002440subdir('qapi')
2441subdir('qobject')
2442subdir('stubs')
2443subdir('trace')
2444subdir('util')
Marc-André Lureau5582c582019-07-16 19:28:54 +04002445subdir('qom')
2446subdir('authz')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002447subdir('crypto')
Marc-André Lureau2d78b562019-07-15 16:00:36 +04002448subdir('ui')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002449
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002450
2451if enable_modules
2452 libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO')
2453 modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO')
2454endif
2455
Paolo Bonzini2becc362020-02-03 11:42:03 +01002456stub_ss = stub_ss.apply(config_all, strict: false)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002457
2458util_ss.add_all(trace_ss)
Paolo Bonzini2becc362020-02-03 11:42:03 +01002459util_ss = util_ss.apply(config_all, strict: false)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002460libqemuutil = static_library('qemuutil',
2461 sources: util_ss.sources() + stub_ss.sources() + genh,
Paolo Bonzini6d7c7c22021-06-03 15:01:35 +02002462 dependencies: [util_ss.dependencies(), libm, threads, glib, socket, malloc, pixman])
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002463qemuutil = declare_dependency(link_with: libqemuutil,
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +04002464 sources: genh + version_res)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002465
Philippe Mathieu-Daudé957b31f2021-01-22 21:44:37 +01002466if have_system or have_user
2467 decodetree = generator(find_program('scripts/decodetree.py'),
2468 output: 'decode-@BASENAME@.c.inc',
2469 arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@'])
2470 subdir('libdecnumber')
2471 subdir('target')
2472endif
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02002473
Paolo Bonzini478e9432020-08-17 12:47:55 +02002474subdir('audio')
Marc-André Lureau7fcfd452019-07-16 19:33:55 +04002475subdir('io')
Marc-André Lureau848e8ff2019-07-15 23:18:07 +04002476subdir('chardev')
Marc-André Lureauec0d5892019-07-15 15:04:49 +04002477subdir('fsdev')
Marc-André Lureau708eab42019-09-03 16:59:33 +04002478subdir('dump')
Marc-André Lureauec0d5892019-07-15 15:04:49 +04002479
Philippe Mathieu-Daudéf285bd32021-01-22 21:44:34 +01002480if have_block
2481 block_ss.add(files(
2482 'block.c',
2483 'blockjob.c',
2484 'job.c',
2485 'qemu-io-cmds.c',
2486 ))
2487 block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c'))
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04002488
Philippe Mathieu-Daudéf285bd32021-01-22 21:44:34 +01002489 subdir('nbd')
2490 subdir('scsi')
2491 subdir('block')
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04002492
Philippe Mathieu-Daudéf285bd32021-01-22 21:44:34 +01002493 blockdev_ss.add(files(
2494 'blockdev.c',
2495 'blockdev-nbd.c',
2496 'iothread.c',
2497 'job-qmp.c',
2498 ), gnutls)
Paolo Bonzini4a963372020-08-03 16:22:28 +02002499
Philippe Mathieu-Daudéf285bd32021-01-22 21:44:34 +01002500 # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon,
2501 # os-win32.c does not
2502 blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c'))
2503 softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')])
2504endif
Paolo Bonzini4a963372020-08-03 16:22:28 +02002505
2506common_ss.add(files('cpus-common.c'))
2507
Paolo Bonzini5d3ea0e2020-08-06 13:40:26 +02002508subdir('softmmu')
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04002509
Richard Hendersonf3433462020-09-12 10:47:33 -07002510common_ss.add(capstone)
Paolo Bonzinid9f24bf2020-10-06 09:05:29 +02002511specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04002512
Richard Henderson44b99a62021-03-22 12:24:26 +01002513# Work around a gcc bug/misfeature wherein constant propagation looks
2514# through an alias:
2515# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99696
2516# to guess that a const variable is always zero. Without lto, this is
2517# impossible, as the alias is restricted to page-vary-common.c. Indeed,
2518# without lto, not even the alias is required -- we simply use different
2519# declarations in different compilation units.
2520pagevary = files('page-vary-common.c')
2521if get_option('b_lto')
2522 pagevary_flags = ['-fno-lto']
2523 if get_option('cfi')
2524 pagevary_flags += '-fno-sanitize=cfi-icall'
2525 endif
2526 pagevary = static_library('page-vary-common', sources: pagevary,
2527 c_args: pagevary_flags)
2528 pagevary = declare_dependency(link_with: pagevary)
2529endif
2530common_ss.add(pagevary)
Richard Henderson6670d4d2021-03-22 12:24:24 +01002531specific_ss.add(files('page-vary.c'))
2532
Marc-André Lureauab318052019-07-24 19:23:16 +04002533subdir('backends')
Marc-André Lureauc574e162019-07-26 12:02:31 +04002534subdir('disas')
Marc-André Lureau55166232019-07-24 19:16:22 +04002535subdir('migration')
Paolo Bonziniff219dc2020-08-04 21:14:26 +02002536subdir('monitor')
Marc-André Lureaucdaf0722019-07-22 23:47:50 +04002537subdir('net')
Marc-André Lureau17ef2af2019-07-22 23:40:45 +04002538subdir('replay')
Philippe Mathieu-Daudé8df9f0c2021-03-05 13:54:50 +00002539subdir('semihosting')
Marc-André Lureau582ea952019-08-15 15:15:32 +04002540subdir('hw')
Richard Henderson104cc2c2021-03-08 12:04:33 -08002541subdir('tcg')
Richard Hendersonc6347542021-03-08 12:15:06 -08002542subdir('fpu')
Marc-André Lureau1a828782019-08-18 16:13:08 +04002543subdir('accel')
Paolo Bonzinif556b4a2020-01-24 13:08:01 +01002544subdir('plugins')
Marc-André Lureaub309c322019-08-18 19:20:37 +04002545subdir('bsd-user')
Marc-André Lureau3a304462019-08-18 16:13:08 +04002546subdir('linux-user')
Andrew Melnychenko46627f42021-05-14 14:48:32 +03002547subdir('ebpf')
2548
Marc-André Lureaub309c322019-08-18 19:20:37 +04002549bsd_user_ss.add(files('gdbstub.c'))
2550specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)
2551
Marc-André Lureau3a304462019-08-18 16:13:08 +04002552linux_user_ss.add(files('gdbstub.c', 'thunk.c'))
2553specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)
Paolo Bonzini5d3ea0e2020-08-06 13:40:26 +02002554
Paolo Bonzinia2ce7db2020-08-04 20:00:40 +02002555# needed for fuzzing binaries
2556subdir('tests/qtest/libqos')
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002557subdir('tests/qtest/fuzz')
Paolo Bonzinia2ce7db2020-08-04 20:00:40 +02002558
Gerd Hoffmannc94a7b82021-06-24 12:38:29 +02002559# accel modules
Gerd Hoffmanndae0ec12021-06-24 12:38:31 +02002560tcg_real_module_ss = ss.source_set()
2561tcg_real_module_ss.add_all(when: 'CONFIG_TCG_MODULAR', if_true: tcg_module_ss)
2562specific_ss.add_all(when: 'CONFIG_TCG_BUILTIN', if_true: tcg_module_ss)
2563target_modules += { 'accel' : { 'qtest': qtest_module_ss,
2564 'tcg': tcg_real_module_ss }}
Gerd Hoffmannc94a7b82021-06-24 12:38:29 +02002565
Paolo Bonzinia0c91622020-10-07 11:01:51 -04002566########################
2567# Library dependencies #
2568########################
2569
Gerd Hoffmannf5723ab2021-06-24 12:38:04 +02002570modinfo_collect = find_program('scripts/modinfo-collect.py')
Gerd Hoffmann5ebbfec2021-06-24 12:38:05 +02002571modinfo_generate = find_program('scripts/modinfo-generate.py')
Gerd Hoffmannf5723ab2021-06-24 12:38:04 +02002572modinfo_files = []
2573
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002574block_mods = []
2575softmmu_mods = []
2576foreach d, list : modules
2577 foreach m, module_ss : list
2578 if enable_modules and targetos != 'windows'
Gerd Hoffmann3e292c52020-09-14 15:42:20 +02002579 module_ss = module_ss.apply(config_all, strict: false)
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002580 sl = static_library(d + '-' + m, [genh, module_ss.sources()],
2581 dependencies: [modulecommon, module_ss.dependencies()], pic: true)
2582 if d == 'block'
2583 block_mods += sl
2584 else
2585 softmmu_mods += sl
2586 endif
Gerd Hoffmannf5723ab2021-06-24 12:38:04 +02002587 if module_ss.sources() != []
2588 # FIXME: Should use sl.extract_all_objects(recursive: true) as
2589 # input. Sources can be used multiple times but objects are
2590 # unique when it comes to lookup in compile_commands.json.
2591 # Depnds on a mesion version with
2592 # https://github.com/mesonbuild/meson/pull/8900
2593 modinfo_files += custom_target(d + '-' + m + '.modinfo',
2594 output: d + '-' + m + '.modinfo',
Paolo Bonziniac347112021-07-21 18:51:57 +02002595 input: module_ss.sources() + genh,
Gerd Hoffmannf5723ab2021-06-24 12:38:04 +02002596 capture: true,
Paolo Bonziniac347112021-07-21 18:51:57 +02002597 command: [modinfo_collect, module_ss.sources()])
Gerd Hoffmannf5723ab2021-06-24 12:38:04 +02002598 endif
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002599 else
2600 if d == 'block'
2601 block_ss.add_all(module_ss)
2602 else
2603 softmmu_ss.add_all(module_ss)
2604 endif
2605 endif
2606 endforeach
2607endforeach
2608
Gerd Hoffmanndb2e89d2021-06-24 12:38:22 +02002609foreach d, list : target_modules
2610 foreach m, module_ss : list
2611 if enable_modules and targetos != 'windows'
2612 foreach target : target_dirs
2613 if target.endswith('-softmmu')
2614 config_target = config_target_mak[target]
2615 config_target += config_host
2616 target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
2617 c_args = ['-DNEED_CPU_H',
2618 '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
2619 '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
2620 target_module_ss = module_ss.apply(config_target, strict: false)
2621 if target_module_ss.sources() != []
2622 module_name = d + '-' + m + '-' + config_target['TARGET_NAME']
2623 sl = static_library(module_name,
2624 [genh, target_module_ss.sources()],
2625 dependencies: [modulecommon, target_module_ss.dependencies()],
2626 include_directories: target_inc,
2627 c_args: c_args,
2628 pic: true)
2629 softmmu_mods += sl
2630 # FIXME: Should use sl.extract_all_objects(recursive: true) too.
2631 modinfo_files += custom_target(module_name + '.modinfo',
2632 output: module_name + '.modinfo',
Gerd Hoffmann917ddc22021-07-23 14:01:56 +02002633 input: target_module_ss.sources() + genh,
Gerd Hoffmanndb2e89d2021-06-24 12:38:22 +02002634 capture: true,
Gerd Hoffmann917ddc22021-07-23 14:01:56 +02002635 command: [modinfo_collect, '--target', target, target_module_ss.sources()])
Gerd Hoffmanndb2e89d2021-06-24 12:38:22 +02002636 endif
2637 endif
2638 endforeach
2639 else
2640 specific_ss.add_all(module_ss)
2641 endif
2642 endforeach
2643endforeach
2644
Gerd Hoffmann5ebbfec2021-06-24 12:38:05 +02002645if enable_modules
2646 modinfo_src = custom_target('modinfo.c',
2647 output: 'modinfo.c',
2648 input: modinfo_files,
2649 command: [modinfo_generate, '@INPUT@'],
2650 capture: true)
2651 modinfo_lib = static_library('modinfo', modinfo_src)
2652 modinfo_dep = declare_dependency(link_whole: modinfo_lib)
2653 softmmu_ss.add(modinfo_dep)
2654endif
2655
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002656nm = find_program('nm')
Yonggang Luo604f3e42020-09-03 01:00:50 +08002657undefsym = find_program('scripts/undefsym.py')
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002658block_syms = custom_target('block.syms', output: 'block.syms',
2659 input: [libqemuutil, block_mods],
2660 capture: true,
2661 command: [undefsym, nm, '@INPUT@'])
2662qemu_syms = custom_target('qemu.syms', output: 'qemu.syms',
2663 input: [libqemuutil, softmmu_mods],
2664 capture: true,
2665 command: [undefsym, nm, '@INPUT@'])
2666
Philippe Mathieu-Daudéda33fc02020-10-06 14:56:02 +02002667qom_ss = qom_ss.apply(config_host, strict: false)
2668libqom = static_library('qom', qom_ss.sources() + genh,
2669 dependencies: [qom_ss.dependencies()],
2670 name_suffix: 'fa')
2671
2672qom = declare_dependency(link_whole: libqom)
2673
Philippe Mathieu-Daudé55567892020-10-06 14:56:01 +02002674authz_ss = authz_ss.apply(config_host, strict: false)
2675libauthz = static_library('authz', authz_ss.sources() + genh,
2676 dependencies: [authz_ss.dependencies()],
2677 name_suffix: 'fa',
2678 build_by_default: false)
2679
2680authz = declare_dependency(link_whole: libauthz,
2681 dependencies: qom)
2682
Philippe Mathieu-Daudé23893042020-10-06 14:56:00 +02002683crypto_ss = crypto_ss.apply(config_host, strict: false)
2684libcrypto = static_library('crypto', crypto_ss.sources() + genh,
2685 dependencies: [crypto_ss.dependencies()],
2686 name_suffix: 'fa',
2687 build_by_default: false)
2688
2689crypto = declare_dependency(link_whole: libcrypto,
2690 dependencies: [authz, qom])
2691
Philippe Mathieu-Daudéf78536b2020-10-06 14:55:59 +02002692io_ss = io_ss.apply(config_host, strict: false)
2693libio = static_library('io', io_ss.sources() + genh,
2694 dependencies: [io_ss.dependencies()],
2695 link_with: libqemuutil,
2696 name_suffix: 'fa',
2697 build_by_default: false)
2698
2699io = declare_dependency(link_whole: libio, dependencies: [crypto, qom])
2700
Philippe Mathieu-Daudé7e6edef2020-10-06 14:55:58 +02002701libmigration = static_library('migration', sources: migration_files + genh,
2702 name_suffix: 'fa',
2703 build_by_default: false)
2704migration = declare_dependency(link_with: libmigration,
2705 dependencies: [zlib, qom, io])
2706softmmu_ss.add(migration)
2707
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04002708block_ss = block_ss.apply(config_host, strict: false)
2709libblock = static_library('block', block_ss.sources() + genh,
2710 dependencies: block_ss.dependencies(),
2711 link_depends: block_syms,
2712 name_suffix: 'fa',
2713 build_by_default: false)
2714
2715block = declare_dependency(link_whole: [libblock],
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04002716 link_args: '@block.syms',
2717 dependencies: [crypto, io])
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04002718
Stefan Hajnoczi4fb90712020-09-29 13:55:14 +01002719blockdev_ss = blockdev_ss.apply(config_host, strict: false)
2720libblockdev = static_library('blockdev', blockdev_ss.sources() + genh,
2721 dependencies: blockdev_ss.dependencies(),
2722 name_suffix: 'fa',
2723 build_by_default: false)
2724
2725blockdev = declare_dependency(link_whole: [libblockdev],
2726 dependencies: [block])
2727
Paolo Bonziniff219dc2020-08-04 21:14:26 +02002728qmp_ss = qmp_ss.apply(config_host, strict: false)
2729libqmp = static_library('qmp', qmp_ss.sources() + genh,
2730 dependencies: qmp_ss.dependencies(),
2731 name_suffix: 'fa',
2732 build_by_default: false)
2733
2734qmp = declare_dependency(link_whole: [libqmp])
2735
Philippe Mathieu-Daudéc2306d72020-10-06 14:55:57 +02002736libchardev = static_library('chardev', chardev_ss.sources() + genh,
2737 name_suffix: 'fa',
Roman Bolshakov3eacf702021-01-02 15:52:13 +03002738 dependencies: [gnutls],
Philippe Mathieu-Daudéc2306d72020-10-06 14:55:57 +02002739 build_by_default: false)
2740
2741chardev = declare_dependency(link_whole: libchardev)
2742
Philippe Mathieu-Daudée28ab092020-10-06 14:55:56 +02002743libhwcore = static_library('hwcore', sources: hwcore_files + genh,
2744 name_suffix: 'fa',
2745 build_by_default: false)
2746hwcore = declare_dependency(link_whole: libhwcore)
2747common_ss.add(hwcore)
2748
Philippe Mathieu-Daudé064f8ee2020-10-06 14:55:54 +02002749###########
2750# Targets #
2751###########
2752
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002753foreach m : block_mods + softmmu_mods
2754 shared_module(m.name(),
2755 name_prefix: '',
2756 link_whole: m,
2757 install: true,
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04002758 install_dir: qemu_moddir)
Marc-André Lureau3154fee2019-08-29 22:07:01 +04002759endforeach
2760
Stefan Hajnoczi4fb90712020-09-29 13:55:14 +01002761softmmu_ss.add(authz, blockdev, chardev, crypto, io, qmp)
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002762common_ss.add(qom, qemuutil)
2763
2764common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss])
Paolo Bonzini2becc362020-02-03 11:42:03 +01002765common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss)
2766
2767common_all = common_ss.apply(config_all, strict: false)
2768common_all = static_library('common',
2769 build_by_default: false,
2770 sources: common_all.sources() + genh,
Katsuhiro Ueno75eebe02021-04-29 11:43:07 +09002771 implicit_include_directories: false,
Paolo Bonzini2becc362020-02-03 11:42:03 +01002772 dependencies: common_all.dependencies(),
2773 name_suffix: 'fa')
2774
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04002775feature_to_c = find_program('scripts/feature_to_c.sh')
2776
Paolo Bonzinifd5eef82020-09-16 05:00:53 -04002777emulators = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01002778foreach target : target_dirs
2779 config_target = config_target_mak[target]
2780 target_name = config_target['TARGET_NAME']
2781 arch = config_target['TARGET_BASE_ARCH']
Paolo Bonzini859aef02020-08-04 18:14:26 +02002782 arch_srcs = [config_target_h[target]]
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002783 arch_deps = []
2784 c_args = ['-DNEED_CPU_H',
2785 '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
2786 '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -04002787 link_args = emulator_link_args
Paolo Bonzini2becc362020-02-03 11:42:03 +01002788
Paolo Bonzini859aef02020-08-04 18:14:26 +02002789 config_target += config_host
Paolo Bonzini2becc362020-02-03 11:42:03 +01002790 target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
2791 if targetos == 'linux'
2792 target_inc += include_directories('linux-headers', is_system: true)
2793 endif
2794 if target.endswith('-softmmu')
2795 qemu_target_name = 'qemu-system-' + target_name
2796 target_type='system'
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02002797 t = target_softmmu_arch[arch].apply(config_target, strict: false)
2798 arch_srcs += t.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002799 arch_deps += t.dependencies()
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02002800
Marc-André Lureau2c442202019-08-17 13:55:58 +04002801 hw_dir = target_name == 'sparc64' ? 'sparc64' : arch
2802 hw = hw_arch[hw_dir].apply(config_target, strict: false)
2803 arch_srcs += hw.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002804 arch_deps += hw.dependencies()
Marc-André Lureau2c442202019-08-17 13:55:58 +04002805
Paolo Bonzini2becc362020-02-03 11:42:03 +01002806 arch_srcs += config_devices_h[target]
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002807 link_args += ['@block.syms', '@qemu.syms']
Paolo Bonzini2becc362020-02-03 11:42:03 +01002808 else
Marc-André Lureau3a304462019-08-18 16:13:08 +04002809 abi = config_target['TARGET_ABI_DIR']
Paolo Bonzini2becc362020-02-03 11:42:03 +01002810 target_type='user'
2811 qemu_target_name = 'qemu-' + target_name
Philippe Mathieu-Daudé46369b52021-04-13 11:27:09 +02002812 if arch in target_user_arch
2813 t = target_user_arch[arch].apply(config_target, strict: false)
2814 arch_srcs += t.sources()
2815 arch_deps += t.dependencies()
2816 endif
Paolo Bonzini2becc362020-02-03 11:42:03 +01002817 if 'CONFIG_LINUX_USER' in config_target
2818 base_dir = 'linux-user'
2819 target_inc += include_directories('linux-user/host/' / config_host['ARCH'])
Warner Loshe2a74722021-08-03 17:17:17 -06002820 endif
2821 if 'CONFIG_BSD_USER' in config_target
Paolo Bonzini2becc362020-02-03 11:42:03 +01002822 base_dir = 'bsd-user'
Warner Loshe2a74722021-08-03 17:17:17 -06002823 target_inc += include_directories('bsd-user/' / targetos)
2824 dir = base_dir / abi
2825 arch_srcs += files(dir / 'target_arch_cpu.c')
Paolo Bonzini2becc362020-02-03 11:42:03 +01002826 endif
2827 target_inc += include_directories(
2828 base_dir,
Marc-André Lureau3a304462019-08-18 16:13:08 +04002829 base_dir / abi,
Paolo Bonzini2becc362020-02-03 11:42:03 +01002830 )
Marc-André Lureau3a304462019-08-18 16:13:08 +04002831 if 'CONFIG_LINUX_USER' in config_target
2832 dir = base_dir / abi
2833 arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c')
2834 if config_target.has_key('TARGET_SYSTBL_ABI')
2835 arch_srcs += \
2836 syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'],
2837 extra_args : config_target['TARGET_SYSTBL_ABI'])
2838 endif
2839 endif
Paolo Bonzini2becc362020-02-03 11:42:03 +01002840 endif
2841
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04002842 if 'TARGET_XML_FILES' in config_target
2843 gdbstub_xml = custom_target(target + '-gdbstub-xml.c',
2844 output: target + '-gdbstub-xml.c',
2845 input: files(config_target['TARGET_XML_FILES'].split()),
2846 command: [feature_to_c, '@INPUT@'],
2847 capture: true)
2848 arch_srcs += gdbstub_xml
2849 endif
2850
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02002851 t = target_arch[arch].apply(config_target, strict: false)
2852 arch_srcs += t.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002853 arch_deps += t.dependencies()
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02002854
Paolo Bonzini2becc362020-02-03 11:42:03 +01002855 target_common = common_ss.apply(config_target, strict: false)
2856 objects = common_all.extract_objects(target_common.sources())
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002857 deps = target_common.dependencies()
Paolo Bonzini2becc362020-02-03 11:42:03 +01002858
Paolo Bonzini2becc362020-02-03 11:42:03 +01002859 target_specific = specific_ss.apply(config_target, strict: false)
2860 arch_srcs += target_specific.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002861 arch_deps += target_specific.dependencies()
Paolo Bonzini2becc362020-02-03 11:42:03 +01002862
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002863 lib = static_library('qemu-' + target,
Paolo Bonzini859aef02020-08-04 18:14:26 +02002864 sources: arch_srcs + genh,
Paolo Bonzinib7612f42020-08-26 08:22:58 +02002865 dependencies: arch_deps,
Paolo Bonzini2becc362020-02-03 11:42:03 +01002866 objects: objects,
2867 include_directories: target_inc,
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002868 c_args: c_args,
2869 build_by_default: false,
Paolo Bonzini2becc362020-02-03 11:42:03 +01002870 name_suffix: 'fa')
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002871
2872 if target.endswith('-softmmu')
2873 execs = [{
2874 'name': 'qemu-system-' + target_name,
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002875 'win_subsystem': 'console',
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002876 'sources': files('softmmu/main.c'),
2877 'dependencies': []
2878 }]
Paolo Bonzini35be72b2020-02-06 14:17:15 +01002879 if targetos == 'windows' and (sdl.found() or gtk.found())
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002880 execs += [{
2881 'name': 'qemu-system-' + target_name + 'w',
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002882 'win_subsystem': 'windows',
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002883 'sources': files('softmmu/main.c'),
2884 'dependencies': []
2885 }]
2886 endif
Paolo Bonzini537b7242021-10-07 15:08:12 +02002887 if get_option('fuzzing')
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002888 specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false)
2889 execs += [{
2890 'name': 'qemu-fuzz-' + target_name,
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002891 'win_subsystem': 'console',
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002892 'sources': specific_fuzz.sources(),
2893 'dependencies': specific_fuzz.dependencies(),
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002894 }]
2895 endif
2896 else
2897 execs = [{
2898 'name': 'qemu-' + target_name,
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002899 'win_subsystem': 'console',
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002900 'sources': [],
2901 'dependencies': []
2902 }]
2903 endif
2904 foreach exe: execs
Alexander Graf8a74ce62021-01-20 23:44:34 +01002905 exe_name = exe['name']
John Arbuckle3983a762021-07-05 15:53:28 -04002906 if targetos == 'darwin'
Alexander Graf8a74ce62021-01-20 23:44:34 +01002907 exe_name += '-unsigned'
2908 endif
2909
2910 emulator = executable(exe_name, exe['sources'],
Akihiko Odaki237377a2021-02-25 09:06:14 +09002911 install: true,
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002912 c_args: c_args,
2913 dependencies: arch_deps + deps + exe['dependencies'],
2914 objects: lib.extract_all_objects(recursive: true),
2915 link_language: link_language,
2916 link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []),
2917 link_args: link_args,
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002918 win_subsystem: exe['win_subsystem'])
Alexander Graf8a74ce62021-01-20 23:44:34 +01002919
John Arbuckle3983a762021-07-05 15:53:28 -04002920 if targetos == 'darwin'
Akihiko Odaki411ad8d2021-07-09 10:25:33 +09002921 icon = 'pc-bios/qemu.rsrc'
2922 build_input = [emulator, files(icon)]
2923 install_input = [
2924 get_option('bindir') / exe_name,
2925 meson.current_source_dir() / icon
2926 ]
2927 if 'CONFIG_HVF' in config_target
2928 entitlements = 'accel/hvf/entitlements.plist'
2929 build_input += files(entitlements)
2930 install_input += meson.current_source_dir() / entitlements
2931 endif
2932
Alexander Graf8a74ce62021-01-20 23:44:34 +01002933 emulators += {exe['name'] : custom_target(exe['name'],
Akihiko Odaki411ad8d2021-07-09 10:25:33 +09002934 input: build_input,
Alexander Graf8a74ce62021-01-20 23:44:34 +01002935 output: exe['name'],
2936 command: [
Akihiko Odaki411ad8d2021-07-09 10:25:33 +09002937 files('scripts/entitlement.sh'),
2938 '@OUTPUT@',
2939 '@INPUT@'
Alexander Graf8a74ce62021-01-20 23:44:34 +01002940 ])
2941 }
Akihiko Odaki237377a2021-02-25 09:06:14 +09002942
2943 meson.add_install_script('scripts/entitlement.sh', '--install',
Akihiko Odaki237377a2021-02-25 09:06:14 +09002944 get_option('bindir') / exe['name'],
Akihiko Odaki411ad8d2021-07-09 10:25:33 +09002945 install_input)
Alexander Graf8a74ce62021-01-20 23:44:34 +01002946 else
2947 emulators += {exe['name']: emulator}
2948 endif
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002949
Paolo Bonzini9c29b742021-10-07 15:08:14 +02002950 if stap.found()
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002951 foreach stp: [
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02002952 {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false},
2953 {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / exe['name'], 'install': true},
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002954 {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true},
2955 {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true},
2956 ]
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02002957 custom_target(exe['name'] + stp['ext'],
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002958 input: trace_events_all,
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02002959 output: exe['name'] + stp['ext'],
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002960 install: stp['install'],
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04002961 install_dir: get_option('datadir') / 'systemtap/tapset',
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002962 command: [
2963 tracetool, '--group=all', '--format=' + stp['fmt'],
2964 '--binary=' + stp['bin'],
2965 '--target-name=' + target_name,
2966 '--target-type=' + target_type,
2967 '--probe-prefix=qemu.' + target_type + '.' + target_name,
Stefan Hajnoczic05012a2020-08-27 15:29:12 +01002968 '@INPUT@', '@OUTPUT@'
Stefan Hajnoczi0572d6c2021-01-25 11:09:58 +00002969 ],
2970 depend_files: tracetool_depends)
Marc-André Lureau10e1d262019-08-20 12:29:52 +04002971 endforeach
2972 endif
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02002973 endforeach
Paolo Bonzini2becc362020-02-03 11:42:03 +01002974endforeach
2975
Paolo Bonzini931049b2020-02-05 09:44:24 +01002976# Other build targets
Marc-André Lureau897b5af2019-07-16 21:54:15 +04002977
Paolo Bonzinif556b4a2020-01-24 13:08:01 +01002978if 'CONFIG_PLUGIN' in config_host
2979 install_headers('include/qemu/qemu-plugin.h')
2980endif
2981
Paolo Bonzinif15bff22019-07-18 13:19:02 +02002982if 'CONFIG_GUEST_AGENT' in config_host
2983 subdir('qga')
Paolo Bonzinib846ab72021-01-21 11:49:04 +01002984elif get_option('guest_agent_msi').enabled()
2985 error('Guest agent MSI requested, but the guest agent is not being built')
Paolo Bonzinif15bff22019-07-18 13:19:02 +02002986endif
2987
Laurent Vivier9755c942020-08-24 17:24:30 +02002988# Don't build qemu-keymap if xkbcommon is not explicitly enabled
2989# when we don't build tools or system
Laurent Vivier4113f4c2020-08-24 17:24:29 +02002990if xkbcommon.found()
Marc-André Lureau28742462019-09-19 20:24:43 +04002991 # used for the update-keymaps target, so include rules even if !have_tools
2992 qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh,
2993 dependencies: [qemuutil, xkbcommon], install: have_tools)
2994endif
2995
Paolo Bonzini931049b2020-02-05 09:44:24 +01002996if have_tools
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04002997 qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep],
2998 dependencies: [authz, block, crypto, io, qom, qemuutil], install: true)
2999 qemu_io = executable('qemu-io', files('qemu-io.c'),
3000 dependencies: [block, qemuutil], install: true)
Daniel P. Berrangéeb705982020-08-25 11:38:50 +01003001 qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'),
Roman Bolshakov3eacf702021-01-02 15:52:13 +03003002 dependencies: [blockdev, qemuutil, gnutls], install: true)
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04003003
Paolo Bonzini7c58bb72020-08-04 20:18:36 +02003004 subdir('storage-daemon')
Paolo Bonzinia9c97272019-06-10 12:27:52 +02003005 subdir('contrib/rdmacm-mux')
Marc-André Lureau1d7bb6a2019-07-12 23:47:06 +04003006 subdir('contrib/elf2dmp')
Paolo Bonzinia9c97272019-06-10 12:27:52 +02003007
Marc-André Lureau157e7b12019-07-15 14:50:58 +04003008 executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'),
3009 dependencies: qemuutil,
3010 install: true)
3011
Paolo Bonzini931049b2020-02-05 09:44:24 +01003012 if 'CONFIG_VHOST_USER' in config_host
Paolo Bonzini2d7ac0a2019-06-10 12:18:02 +02003013 subdir('contrib/vhost-user-blk')
Paolo Bonzinib7612f42020-08-26 08:22:58 +02003014 subdir('contrib/vhost-user-gpu')
Marc-André Lureau32fcc622019-07-12 22:11:20 +04003015 subdir('contrib/vhost-user-input')
Paolo Bonzini99650b62019-06-10 12:21:14 +02003016 subdir('contrib/vhost-user-scsi')
Paolo Bonzini931049b2020-02-05 09:44:24 +01003017 endif
Marc-André Lureau8f51e012019-07-15 14:39:25 +04003018
3019 if targetos == 'linux'
3020 executable('qemu-bridge-helper', files('qemu-bridge-helper.c'),
3021 dependencies: [qemuutil, libcap_ng],
3022 install: true,
3023 install_dir: get_option('libexecdir'))
Marc-André Lureau897b5af2019-07-16 21:54:15 +04003024
3025 executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'),
3026 dependencies: [authz, crypto, io, qom, qemuutil,
Paolo Bonzini6ec0e152020-09-16 18:07:29 +02003027 libcap_ng, mpathpersist],
Marc-André Lureau897b5af2019-07-16 21:54:15 +04003028 install: true)
Marc-André Lureau8f51e012019-07-15 14:39:25 +04003029 endif
3030
Paolo Bonziniccd250a2021-06-03 12:50:17 +02003031 if have_ivshmem
Marc-André Lureau5ee24e72019-07-12 23:16:54 +04003032 subdir('contrib/ivshmem-client')
3033 subdir('contrib/ivshmem-server')
3034 endif
Paolo Bonzini931049b2020-02-05 09:44:24 +01003035endif
3036
Marc-André Lureauf5aa6322020-08-26 17:06:18 +04003037subdir('scripts')
Paolo Bonzini3f99cf52020-02-05 09:45:39 +01003038subdir('tools')
Marc-André Lureaubdcbea72019-07-15 21:22:31 +04003039subdir('pc-bios')
Paolo Bonzinif8aa24e2020-08-05 15:49:10 +02003040subdir('docs')
Yonggang Luoe3667662020-10-16 06:06:25 +08003041subdir('tests')
Paolo Bonzini1b695472021-01-07 14:02:29 +01003042if gtk.found()
Marc-André Lureaue8f3bd72019-09-19 21:02:09 +04003043 subdir('po')
3044endif
Paolo Bonzini3f99cf52020-02-05 09:45:39 +01003045
Marc-André Lureau8adfeba2020-08-26 15:04:19 +04003046if host_machine.system() == 'windows'
3047 nsis_cmd = [
3048 find_program('scripts/nsis.py'),
3049 '@OUTPUT@',
3050 get_option('prefix'),
3051 meson.current_source_dir(),
Stefan Weil24bdcc92020-11-25 20:18:33 +01003052 host_machine.cpu(),
Marc-André Lureau8adfeba2020-08-26 15:04:19 +04003053 '--',
3054 '-DDISPLAYVERSION=' + meson.project_version(),
3055 ]
3056 if build_docs
3057 nsis_cmd += '-DCONFIG_DOCUMENTATION=y'
3058 endif
Paolo Bonzini1b695472021-01-07 14:02:29 +01003059 if gtk.found()
Marc-André Lureau8adfeba2020-08-26 15:04:19 +04003060 nsis_cmd += '-DCONFIG_GTK=y'
3061 endif
3062
3063 nsis = custom_target('nsis',
3064 output: 'qemu-setup-' + meson.project_version() + '.exe',
3065 input: files('qemu.nsi'),
3066 build_always_stale: true,
3067 command: nsis_cmd + ['@INPUT@'])
3068 alias_target('installer', nsis)
3069endif
3070
Paolo Bonzinia0c91622020-10-07 11:01:51 -04003071#########################
3072# Configuration summary #
3073#########################
3074
Philippe Mathieu-Daudé983d0a72021-01-21 10:56:09 +01003075# Directories
Paolo Bonzinif9332752020-02-03 13:28:38 +01003076summary_info = {}
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04003077summary_info += {'Install prefix': get_option('prefix')}
3078summary_info += {'BIOS directory': qemu_datadir}
3079summary_info += {'firmware path': get_option('qemu_firmwarepath')}
3080summary_info += {'binary directory': get_option('bindir')}
3081summary_info += {'library directory': get_option('libdir')}
3082summary_info += {'module directory': qemu_moddir}
3083summary_info += {'libexec directory': get_option('libexecdir')}
3084summary_info += {'include directory': get_option('includedir')}
3085summary_info += {'config directory': get_option('sysconfdir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003086if targetos != 'windows'
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04003087 summary_info += {'local state directory': get_option('localstatedir')}
Marc-André Lureaub81efab2020-08-26 15:04:18 +04003088 summary_info += {'Manual directory': get_option('mandir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003089else
3090 summary_info += {'local state directory': 'queried at runtime'}
3091endif
Marc-André Lureau491e74c2020-08-26 15:04:17 +04003092summary_info += {'Doc directory': get_option('docdir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003093summary_info += {'Build directory': meson.current_build_dir()}
3094summary_info += {'Source path': meson.current_source_dir()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003095summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']}
Philippe Mathieu-Daudé983d0a72021-01-21 10:56:09 +01003096summary(summary_info, bool_yn: true, section: 'Directories')
3097
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003098# Host binaries
Philippe Mathieu-Daudé983d0a72021-01-21 10:56:09 +01003099summary_info = {}
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003100summary_info += {'git': config_host['GIT']}
3101summary_info += {'make': config_host['MAKE']}
3102summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003103summary_info += {'sphinx-build': sphinx_build}
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003104if config_host.has_key('HAVE_GDB_BIN')
3105 summary_info += {'gdb': config_host['HAVE_GDB_BIN']}
3106endif
3107summary_info += {'genisoimage': config_host['GENISOIMAGE']}
3108if targetos == 'windows' and config_host.has_key('CONFIG_GUEST_AGENT')
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003109 summary_info += {'wixl': wixl}
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003110endif
Joelle van Dyneb8e0c492021-03-15 11:03:41 -07003111if slirp_opt != 'disabled' and 'CONFIG_SLIRP_SMBD' in config_host
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003112 summary_info += {'smbd': config_host['CONFIG_SMBD_COMMAND']}
3113endif
3114summary(summary_info, bool_yn: true, section: 'Host binaries')
3115
Philippe Mathieu-Daudé1d718862021-01-21 10:56:11 +01003116# Configurable features
3117summary_info = {}
3118summary_info += {'Documentation': build_docs}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003119summary_info += {'system-mode emulation': have_system}
3120summary_info += {'user-mode emulation': have_user}
Philippe Mathieu-Daudé813803a2021-01-21 10:56:14 +01003121summary_info += {'block layer': have_block}
Philippe Mathieu-Daudé1d718862021-01-21 10:56:11 +01003122summary_info += {'Install blobs': get_option('install_blobs')}
3123summary_info += {'module support': config_host.has_key('CONFIG_MODULES')}
3124if config_host.has_key('CONFIG_MODULES')
3125 summary_info += {'alternative module path': config_host.has_key('CONFIG_MODULE_UPGRADES')}
3126endif
Paolo Bonzini537b7242021-10-07 15:08:12 +02003127summary_info += {'fuzzing support': get_option('fuzzing')}
Philippe Mathieu-Daudé1d718862021-01-21 10:56:11 +01003128if have_system
Paolo Bonzini87430d52021-10-07 15:06:09 +02003129 summary_info += {'Audio drivers': ' '.join(audio_drivers_selected)}
Philippe Mathieu-Daudé1d718862021-01-21 10:56:11 +01003130endif
Paolo Bonzini9c29b742021-10-07 15:08:14 +02003131summary_info += {'Trace backends': ','.join(get_option('trace_backends'))}
3132if 'simple' in get_option('trace_backends')
3133 summary_info += {'Trace output file': get_option('trace_file') + '-<pid>'}
Philippe Mathieu-Daudé1d718862021-01-21 10:56:11 +01003134endif
3135summary_info += {'QOM debugging': config_host.has_key('CONFIG_QOM_CAST_DEBUG')}
3136summary_info += {'vhost-kernel support': config_host.has_key('CONFIG_VHOST_KERNEL')}
3137summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')}
3138summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')}
3139summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')}
3140summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')}
3141summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_USER')}
3142summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server}
3143summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')}
3144summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')}
3145summary_info += {'build guest agent': config_host.has_key('CONFIG_GUEST_AGENT')}
3146summary(summary_info, bool_yn: true, section: 'Configurable features')
3147
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003148# Compilation information
Philippe Mathieu-Daudée11a0e12021-01-21 10:56:10 +01003149summary_info = {}
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003150summary_info += {'host CPU': cpu}
3151summary_info += {'host endianness': build_machine.endian()}
Alex Bennée63de9352021-05-27 17:03:15 +01003152summary_info += {'C compiler': ' '.join(meson.get_compiler('c').cmd_array())}
3153summary_info += {'Host C compiler': ' '.join(meson.get_compiler('c', native: true).cmd_array())}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003154if link_language == 'cpp'
Alex Bennée63de9352021-05-27 17:03:15 +01003155 summary_info += {'C++ compiler': ' '.join(meson.get_compiler('cpp').cmd_array())}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003156else
3157 summary_info += {'C++ compiler': false}
3158endif
3159if targetos == 'darwin'
Alex Bennée63de9352021-05-27 17:03:15 +01003160 summary_info += {'Objective-C compiler': ' '.join(meson.get_compiler('objc').cmd_array())}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003161endif
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003162if targetos == 'windows'
3163 if 'WIN_SDK' in config_host
3164 summary_info += {'Windows SDK': config_host['WIN_SDK']}
3165 endif
3166endif
Paolo Bonzini47b30832020-09-23 05:26:17 -04003167summary_info += {'CFLAGS': ' '.join(get_option('c_args')
3168 + ['-O' + get_option('optimization')]
3169 + (get_option('debug') ? ['-g'] : []))}
3170if link_language == 'cpp'
3171 summary_info += {'CXXFLAGS': ' '.join(get_option('cpp_args')
3172 + ['-O' + get_option('optimization')]
3173 + (get_option('debug') ? ['-g'] : []))}
3174endif
3175link_args = get_option(link_language + '_link_args')
3176if link_args.length() > 0
3177 summary_info += {'LDFLAGS': ' '.join(link_args)}
3178endif
Paolo Bonzinif9332752020-02-03 13:28:38 +01003179summary_info += {'QEMU_CFLAGS': config_host['QEMU_CFLAGS']}
3180summary_info += {'QEMU_LDFLAGS': config_host['QEMU_LDFLAGS']}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003181summary_info += {'profiler': config_host.has_key('CONFIG_PROFILER')}
Daniele Buonocdad7812020-12-04 18:06:11 -05003182summary_info += {'link-time optimization (LTO)': get_option('b_lto')}
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003183summary_info += {'PIE': get_option('b_pie')}
Laurent Vivier3e8529d2020-09-17 16:07:00 +02003184summary_info += {'static build': config_host.has_key('CONFIG_STATIC')}
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003185summary_info += {'malloc trim support': has_malloc_trim}
3186summary_info += {'membarrier': config_host.has_key('CONFIG_MEMBARRIER')}
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003187summary_info += {'debug stack usage': config_host.has_key('CONFIG_DEBUG_STACK_USAGE')}
3188summary_info += {'mutex debugging': config_host.has_key('CONFIG_DEBUG_MUTEX')}
3189summary_info += {'memory allocator': get_option('malloc')}
3190summary_info += {'avx2 optimization': config_host.has_key('CONFIG_AVX2_OPT')}
3191summary_info += {'avx512f optimization': config_host.has_key('CONFIG_AVX512F_OPT')}
3192summary_info += {'gprof enabled': config_host.has_key('CONFIG_GPROF')}
3193summary_info += {'gcov': get_option('b_coverage')}
3194summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')}
3195summary_info += {'CFI support': get_option('cfi')}
3196if get_option('cfi')
3197 summary_info += {'CFI debug support': get_option('cfi_debug')}
3198endif
3199summary_info += {'strip binaries': get_option('strip')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003200summary_info += {'sparse': sparse}
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003201summary_info += {'mingw32 support': targetos == 'windows'}
Alex Bennée49e85652021-02-22 10:14:50 +00003202
3203# snarf the cross-compilation information for tests
3204foreach target: target_dirs
3205 tcg_mak = meson.current_build_dir() / 'tests/tcg' / 'config-' + target + '.mak'
3206 if fs.exists(tcg_mak)
3207 config_cross_tcg = keyval.load(tcg_mak)
3208 target = config_cross_tcg['TARGET_NAME']
3209 compiler = ''
3210 if 'DOCKER_CROSS_CC_GUEST' in config_cross_tcg
3211 summary_info += {target + ' tests': config_cross_tcg['DOCKER_CROSS_CC_GUEST'] +
3212 ' via ' + config_cross_tcg['DOCKER_IMAGE']}
3213 elif 'CROSS_CC_GUEST' in config_cross_tcg
3214 summary_info += {target + ' tests'
3215 : config_cross_tcg['CROSS_CC_GUEST'] }
3216 endif
3217 endif
3218endforeach
3219
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003220summary(summary_info, bool_yn: true, section: 'Compilation')
3221
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003222# Targets and accelerators
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003223summary_info = {}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003224if have_system
3225 summary_info += {'KVM support': config_all.has_key('CONFIG_KVM')}
3226 summary_info += {'HAX support': config_all.has_key('CONFIG_HAX')}
3227 summary_info += {'HVF support': config_all.has_key('CONFIG_HVF')}
3228 summary_info += {'WHPX support': config_all.has_key('CONFIG_WHPX')}
Reinoud Zandijk74a414a2021-04-02 22:25:32 +02003229 summary_info += {'NVMM support': config_all.has_key('CONFIG_NVMM')}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003230 summary_info += {'Xen support': config_host.has_key('CONFIG_XEN_BACKEND')}
3231 if config_host.has_key('CONFIG_XEN_BACKEND')
3232 summary_info += {'xen ctrl version': config_host['CONFIG_XEN_CTRL_INTERFACE_VERSION']}
3233 endif
3234endif
3235summary_info += {'TCG support': config_all.has_key('CONFIG_TCG')}
3236if config_all.has_key('CONFIG_TCG')
Philippe Mathieu-Daudé39687ac2021-01-25 15:45:29 +01003237 if get_option('tcg_interpreter')
3238 summary_info += {'TCG backend': 'TCI (TCG with bytecode interpreter, experimental and slow)'}
3239 else
3240 summary_info += {'TCG backend': 'native (@0@)'.format(cpu)}
3241 endif
Alex Bennée029aa682021-07-09 15:29:53 +01003242 summary_info += {'TCG plugins': config_host.has_key('CONFIG_PLUGIN')}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003243 summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003244endif
Philippe Mathieu-Daudé2e864b82021-01-21 10:56:12 +01003245summary_info += {'target list': ' '.join(target_dirs)}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003246if have_system
3247 summary_info += {'default devices': get_option('default_devices')}
Paolo Bonzini106ad1f2021-02-17 16:24:25 +01003248 summary_info += {'out of process emulation': multiprocess_allowed}
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003249endif
3250summary(summary_info, bool_yn: true, section: 'Targets and accelerators')
3251
Philippe Mathieu-Daudé813803a2021-01-21 10:56:14 +01003252# Block layer
3253summary_info = {}
3254summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']}
3255summary_info += {'coroutine pool': config_host['CONFIG_COROUTINE_POOL'] == '1'}
3256if have_block
3257 summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']}
3258 summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']}
Kevin Wolfe5f05f82021-07-09 18:41:41 +02003259 summary_info += {'Use block whitelist in tools': config_host.has_key('CONFIG_BDRV_WHITELIST_TOOLS')}
Philippe Mathieu-Daudé813803a2021-01-21 10:56:14 +01003260 summary_info += {'VirtFS support': have_virtfs}
3261 summary_info += {'build virtiofs daemon': have_virtiofsd}
3262 summary_info += {'Live block migration': config_host.has_key('CONFIG_LIVE_BLOCK_MIGRATION')}
3263 summary_info += {'replication support': config_host.has_key('CONFIG_REPLICATION')}
3264 summary_info += {'bochs support': config_host.has_key('CONFIG_BOCHS')}
3265 summary_info += {'cloop support': config_host.has_key('CONFIG_CLOOP')}
3266 summary_info += {'dmg support': config_host.has_key('CONFIG_DMG')}
3267 summary_info += {'qcow v1 support': config_host.has_key('CONFIG_QCOW1')}
3268 summary_info += {'vdi support': config_host.has_key('CONFIG_VDI')}
3269 summary_info += {'vvfat support': config_host.has_key('CONFIG_VVFAT')}
3270 summary_info += {'qed support': config_host.has_key('CONFIG_QED')}
3271 summary_info += {'parallels support': config_host.has_key('CONFIG_PARALLELS')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003272 summary_info += {'FUSE exports': fuse}
Philippe Mathieu-Daudé813803a2021-01-21 10:56:14 +01003273endif
3274summary(summary_info, bool_yn: true, section: 'Block layer support')
3275
Philippe Mathieu-Daudéaa580282021-01-21 10:56:15 +01003276# Crypto
Philippe Mathieu-Daudéaa3ca632021-01-21 10:56:13 +01003277summary_info = {}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003278summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003279summary_info += {'GNUTLS support': gnutls}
3280if gnutls.found()
3281 summary_info += {' GNUTLS crypto': gnutls_crypto.found()}
3282endif
3283summary_info += {'libgcrypt': gcrypt}
3284summary_info += {'nettle': nettle}
Paolo Bonzini57612512021-06-03 11:15:26 +02003285if nettle.found()
3286 summary_info += {' XTS': xts != 'private'}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003287endif
Philippe Mathieu-Daudéaa580282021-01-21 10:56:15 +01003288summary_info += {'crypto afalg': config_host.has_key('CONFIG_AF_ALG')}
3289summary_info += {'rng-none': config_host.has_key('CONFIG_RNG_NONE')}
3290summary_info += {'Linux keyring': config_host.has_key('CONFIG_SECRET_KEYRING')}
3291summary(summary_info, bool_yn: true, section: 'Crypto')
3292
Philippe Mathieu-Daudé69a78cc2021-01-21 10:56:16 +01003293# Libraries
Philippe Mathieu-Daudéaa580282021-01-21 10:56:15 +01003294summary_info = {}
3295if targetos == 'darwin'
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003296 summary_info += {'Cocoa support': cocoa}
Philippe Mathieu-Daudéaa580282021-01-21 10:56:15 +01003297endif
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003298summary_info += {'SDL support': sdl}
3299summary_info += {'SDL image support': sdl_image}
3300summary_info += {'GTK support': gtk}
3301summary_info += {'pixman': pixman}
3302summary_info += {'VTE support': vte}
3303summary_info += {'slirp support': slirp_opt == 'internal' ? slirp_opt : slirp}
3304summary_info += {'libtasn1': tasn1}
3305summary_info += {'PAM': pam}
3306summary_info += {'iconv support': iconv}
3307summary_info += {'curses support': curses}
3308summary_info += {'virgl support': virgl}
3309summary_info += {'curl support': curl}
3310summary_info += {'Multipath support': mpathpersist}
3311summary_info += {'VNC support': vnc}
Paolo Bonzinia0b93232020-02-06 15:48:52 +01003312if vnc.found()
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003313 summary_info += {'VNC SASL support': sasl}
3314 summary_info += {'VNC JPEG support': jpeg}
3315 summary_info += {'VNC PNG support': png}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003316endif
Paolo Bonzini87430d52021-10-07 15:06:09 +02003317if targetos not in ['darwin', 'haiku', 'windows']
3318 summary_info += {'OSS support': oss}
3319elif targetos == 'darwin'
3320 summary_info += {'CoreAudio support': coreaudio}
3321elif targetos == 'windows'
3322 summary_info += {'DirectSound support': dsound}
3323endif
3324if targetos == 'linux'
3325 summary_info += {'ALSA support': alsa}
3326 summary_info += {'PulseAudio support': pulse}
3327endif
3328summary_info += {'JACK support': jack}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003329summary_info += {'brlapi support': brlapi}
Paolo Bonzinie1723992021-10-07 15:08:21 +02003330summary_info += {'vde support': vde}
Paolo Bonzini837b84b2021-10-07 15:08:22 +02003331summary_info += {'netmap support': have_netmap}
Paolo Bonziniff66f3e2021-10-07 15:08:20 +02003332summary_info += {'Linux AIO support': libaio}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003333summary_info += {'Linux io_uring support': linux_io_uring}
3334summary_info += {'ATTR/XATTR support': libattr}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003335summary_info += {'RDMA support': config_host.has_key('CONFIG_RDMA')}
3336summary_info += {'PVRDMA support': config_host.has_key('CONFIG_PVRDMA')}
Paolo Bonzinifbb41212020-10-05 11:31:15 +02003337summary_info += {'fdt support': fdt_opt == 'disabled' ? false : fdt_opt}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003338summary_info += {'libcap-ng support': libcap_ng}
3339summary_info += {'bpf support': libbpf}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003340# TODO: add back protocol and server version
3341summary_info += {'spice support': config_host.has_key('CONFIG_SPICE')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003342summary_info += {'rbd support': rbd}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003343summary_info += {'xfsctl support': config_host.has_key('CONFIG_XFS')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003344summary_info += {'smartcard support': cacard}
3345summary_info += {'U2F support': u2f}
3346summary_info += {'libusb': libusb}
3347summary_info += {'usb net redir': usbredir}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003348summary_info += {'OpenGL support': config_host.has_key('CONFIG_OPENGL')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003349summary_info += {'GBM': gbm}
3350summary_info += {'libiscsi support': libiscsi}
3351summary_info += {'libnfs support': libnfs}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003352if targetos == 'windows'
Paolo Bonzinib846ab72021-01-21 11:49:04 +01003353 if config_host.has_key('CONFIG_GUEST_AGENT')
3354 summary_info += {'QGA VSS support': config_host.has_key('CONFIG_QGA_VSS')}
3355 summary_info += {'QGA w32 disk info': config_host.has_key('CONFIG_QGA_NTDDSCSI')}
Paolo Bonzinib846ab72021-01-21 11:49:04 +01003356 endif
Paolo Bonzinif9332752020-02-03 13:28:38 +01003357endif
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003358summary_info += {'seccomp support': seccomp}
3359summary_info += {'GlusterFS support': glusterfs}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003360summary_info += {'TPM support': config_host.has_key('CONFIG_TPM')}
3361summary_info += {'libssh support': config_host.has_key('CONFIG_LIBSSH')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003362summary_info += {'lzo support': lzo}
3363summary_info += {'snappy support': snappy}
3364summary_info += {'bzip2 support': libbzip2}
3365summary_info += {'lzfse support': liblzfse}
3366summary_info += {'zstd support': zstd}
Paolo Bonzinif9332752020-02-03 13:28:38 +01003367summary_info += {'NUMA host support': config_host.has_key('CONFIG_NUMA')}
Paolo Bonzinibb647c42021-06-03 11:24:56 +02003368summary_info += {'libxml2': libxml2}
3369summary_info += {'capstone': capstone_opt == 'internal' ? capstone_opt : capstone}
3370summary_info += {'libpmem support': libpmem}
3371summary_info += {'libdaxctl support': libdaxctl}
3372summary_info += {'libudev': libudev}
3373# Dummy dependency, keep .found()
Max Reitzdf4ea702020-10-27 20:05:46 +01003374summary_info += {'FUSE lseek': fuse_lseek.found()}
Philippe Mathieu-Daudé69a78cc2021-01-21 10:56:16 +01003375summary(summary_info, bool_yn: true, section: 'Dependencies')
Paolo Bonzinif9332752020-02-03 13:28:38 +01003376
3377if not supported_cpus.contains(cpu)
3378 message()
3379 warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!')
3380 message()
3381 message('CPU host architecture ' + cpu + ' support is not currently maintained.')
3382 message('The QEMU project intends to remove support for this host CPU in')
3383 message('a future release if nobody volunteers to maintain it and to')
3384 message('provide a build host for our continuous integration setup.')
3385 message('configure has succeeded and you can continue to build, but')
3386 message('if you care about QEMU on this platform you should contact')
3387 message('us upstream at qemu-devel@nongnu.org.')
3388endif
3389
3390if not supported_oses.contains(targetos)
3391 message()
3392 warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!')
3393 message()
3394 message('Host OS ' + targetos + 'support is not currently maintained.')
3395 message('The QEMU project intends to remove support for this host OS in')
3396 message('a future release if nobody volunteers to maintain it and to')
3397 message('provide a build host for our continuous integration setup.')
3398 message('configure has succeeded and you can continue to build, but')
3399 message('if you care about QEMU on this platform you should contact')
3400 message('us upstream at qemu-devel@nongnu.org.')
3401endif