]> git.proxmox.com Git - mirror_qemu.git/blame - meson.build
meson, configure: move Xen detection to meson
[mirror_qemu.git] / meson.build
CommitLineData
43a363ae 1project('qemu', ['c'], meson_version: '>=0.59.3',
654d6b04 2 default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3d2f73ef 3 'b_staticpic=false', 'stdsplit=false'],
654d6b04 4 version: files('VERSION'))
a5665051 5
e287072b
TH
6add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
7add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
8add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough'])
3d2f73ef 9
a5665051 10not_found = dependency('', required: false)
654d6b04 11keyval = import('keyval')
a81df1b6 12ss = import('sourceset')
8b18cdbf 13fs = import('fs')
a81df1b6 14
ce1c1e7a 15sh = find_program('sh')
a81df1b6 16cc = meson.get_compiler('c')
a5665051 17config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
3154fee4 18enable_modules = 'CONFIG_MODULES' in config_host
35be72ba 19enable_static = 'CONFIG_STATIC' in config_host
e3667660 20
d7dedf42
PB
21# Allow both shared and static libraries unless --enable-static
22static_kwargs = enable_static ? {'static': true} : {}
23
e3667660
YL
24# Temporary directory used for files created while
25# configure runs. Since it is in the build directory
26# we can safely blow away any previous version of it
27# (and we need not jump through hoops to try to delete
28# it when configure exits.)
29tmpdir = meson.current_build_dir() / 'meson-private/temp'
8fe11232
MAL
30
31if get_option('qemu_suffix').startswith('/')
32 error('qemu_suffix cannot start with a /')
33endif
34
16bf7a33 35qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix')
ab4c0996 36qemu_datadir = get_option('datadir') / get_option('qemu_suffix')
491e74c1 37qemu_docdir = get_option('docdir') / get_option('qemu_suffix')
16bf7a33
PB
38qemu_moddir = get_option('libdir') / get_option('qemu_suffix')
39
40qemu_desktopdir = get_option('datadir') / 'applications'
41qemu_icondir = get_option('datadir') / 'icons'
42
859aef02
PB
43config_host_data = configuration_data()
44genh = []
b83a80e8 45qapi_trace_events = []
a5665051 46
20cf5cb4
PB
47bsd_oses = ['gnu/kfreebsd', 'freebsd', 'netbsd', 'openbsd', 'dragonfly', 'darwin']
48supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
49supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv', 'x86', 'x86_64',
50 'arm', 'aarch64', 'loongarch64', 'mips', 'mips64', 'sparc', 'sparc64']
51
52cpu = host_machine.cpu_family()
53
54# Unify riscv* to a single family.
55if cpu in ['riscv32', 'riscv64']
56 cpu = 'riscv'
57endif
58
59targetos = host_machine.system()
60
760e4327 61target_dirs = config_host['TARGET_DIRS'].split()
dda2da6c
WL
62have_linux_user = false
63have_bsd_user = false
760e4327
PB
64have_system = false
65foreach target : target_dirs
dda2da6c
WL
66 have_linux_user = have_linux_user or target.endswith('linux-user')
67 have_bsd_user = have_bsd_user or target.endswith('bsd-user')
760e4327
PB
68 have_system = have_system or target.endswith('-softmmu')
69endforeach
dda2da6c 70have_user = have_linux_user or have_bsd_user
20cf5cb4
PB
71have_tools = get_option('tools') \
72 .disable_auto_if(not have_system) \
73 .allowed()
74have_ga = get_option('guest_agent') \
75 .disable_auto_if(not have_system and not have_tools) \
76 .require(targetos in ['sunos', 'linux', 'windows'],
77 error_message: 'unsupported OS for QEMU guest agent') \
78 .allowed()
760e4327
PB
79have_block = have_system or have_tools
80
201e8ed7
PB
81python = import('python').find_installation()
82
823eb013
PB
83if cpu not in supported_cpus
84 host_arch = 'unknown'
85elif cpu == 'x86'
86 host_arch = 'i386'
0e3ed77d
RH
87elif cpu == 'mips64'
88 host_arch = 'mips'
823eb013
PB
89else
90 host_arch = cpu
91endif
92
8a19980e
PB
93if cpu in ['x86', 'x86_64']
94 kvm_targets = ['i386-softmmu', 'x86_64-softmmu']
95elif cpu == 'aarch64'
96 kvm_targets = ['aarch64-softmmu']
97elif cpu == 's390x'
98 kvm_targets = ['s390x-softmmu']
99elif cpu in ['ppc', 'ppc64']
100 kvm_targets = ['ppc-softmmu', 'ppc64-softmmu']
fbc5884c
HC
101elif cpu in ['mips', 'mips64']
102 kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu']
fbf43c7d
YJ
103elif cpu in ['riscv']
104 kvm_targets = ['riscv32-softmmu', 'riscv64-softmmu']
8a19980e
PB
105else
106 kvm_targets = []
107endif
108
44d3d898 109kvm_targets_c = '""'
43a363ae 110if get_option('kvm').allowed() and targetos == 'linux'
e741aff0
IM
111 kvm_targets_c = '"' + '" ,"'.join(kvm_targets) + '"'
112endif
113config_host_data.set('CONFIG_KVM_TARGETS', kvm_targets_c)
114
8a19980e 115accelerator_targets = { 'CONFIG_KVM': kvm_targets }
844a06bb
AG
116
117if cpu in ['aarch64']
118 accelerator_targets += {
119 'CONFIG_HVF': ['aarch64-softmmu']
120 }
121endif
122
0c3e41d4 123if cpu in ['x86', 'x86_64', 'arm', 'aarch64']
2a2d51bc 124 # i386 emulator provides xenpv machine type for multiple architectures
0c3e41d4
AB
125 accelerator_targets += {
126 'CONFIG_XEN': ['i386-softmmu', 'x86_64-softmmu'],
127 }
128endif
8a19980e
PB
129if cpu in ['x86', 'x86_64']
130 accelerator_targets += {
131 'CONFIG_HAX': ['i386-softmmu', 'x86_64-softmmu'],
8a19980e 132 'CONFIG_HVF': ['x86_64-softmmu'],
74a414a1 133 'CONFIG_NVMM': ['i386-softmmu', 'x86_64-softmmu'],
8a19980e
PB
134 'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'],
135 }
136endif
137
a1b176f9
PB
138modular_tcg = []
139# Darwin does not support references to thread-local variables in modules
140if targetos != 'darwin'
141 modular_tcg = ['i386-softmmu', 'x86_64-softmmu']
142endif
dae0ec15 143
eae9a1d1 144edk2_targets = [ 'arm-softmmu', 'aarch64-softmmu', 'i386-softmmu', 'x86_64-softmmu' ]
e49c0ef6
PB
145unpack_edk2_blobs = false
146foreach target : edk2_targets
147 if target in target_dirs
148 bzip2 = find_program('bzip2', required: get_option('install_blobs'))
149 unpack_edk2_blobs = bzip2.found()
150 break
151 endif
152endforeach
45b545dd 153
9c29b741
PB
154dtrace = not_found
155stap = not_found
156if 'dtrace' in get_option('trace_backends')
157 dtrace = find_program('dtrace', required: true)
158 stap = find_program('stap', required: false)
159 if stap.found()
160 # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol
161 # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility
162 # instead. QEMU --enable-modules depends on this because the SystemTap
163 # semaphores are linked into the main binary and not the module's shared
164 # object.
165 add_global_arguments('-DSTAP_SDT_V2',
166 native: false, language: ['c', 'cpp', 'objc'])
167 endif
168endif
169
201e8ed7
PB
170##################
171# Compiler flags #
172##################
173
8cc2d231
PB
174qemu_cflags = config_host['QEMU_CFLAGS'].split()
175qemu_cxxflags = config_host['QEMU_CXXFLAGS'].split()
4cb37d11 176qemu_objcflags = config_host['QEMU_OBJCFLAGS'].split()
8cc2d231
PB
177qemu_ldflags = config_host['QEMU_LDFLAGS'].split()
178
c55cf6ab
PB
179if get_option('gprof')
180 qemu_cflags += ['-p']
181 qemu_cxxflags += ['-p']
4cb37d11 182 qemu_objcflags += ['-p']
c55cf6ab
PB
183 qemu_ldflags += ['-p']
184endif
185
ff9ed62b
AB
186# Specify linker-script with add_project_link_arguments so that it is not placed
187# within a linker --start-group/--end-group pair
537b7248
PB
188if get_option('fuzzing')
189 add_project_link_arguments(['-Wl,-T,',
190 (meson.current_source_dir() / 'tests/qtest/fuzz/fork_fuzz.ld')],
191 native: false, language: ['c', 'cpp', 'objc'])
192
193 # Specify a filter to only instrument code that is directly related to
194 # virtual-devices.
195 configure_file(output: 'instrumentation-filter',
196 input: 'scripts/oss-fuzz/instrumentation-filter-template',
197 copy: true)
198 add_global_arguments(
199 cc.get_supported_arguments('-fsanitize-coverage-allowlist=instrumentation-filter'),
200 native: false, language: ['c', 'cpp', 'objc'])
201
202 if get_option('fuzzing_engine') == ''
203 # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the
204 # compiled code. To build non-fuzzer binaries with --enable-fuzzing, link
205 # everything with fsanitize=fuzzer-no-link. Otherwise, the linker will be
206 # unable to bind the fuzzer-related callbacks added by instrumentation.
207 add_global_arguments('-fsanitize=fuzzer-no-link',
208 native: false, language: ['c', 'cpp', 'objc'])
209 add_global_link_arguments('-fsanitize=fuzzer-no-link',
ff9ed62b 210 native: false, language: ['c', 'cpp', 'objc'])
537b7248
PB
211 # For the actual fuzzer binaries, we need to link against the libfuzzer
212 # library. They need to be configurable, to support OSS-Fuzz
213 fuzz_exe_ldflags = ['-fsanitize=fuzzer']
214 else
215 # LIB_FUZZING_ENGINE was set; assume we are running on OSS-Fuzz, and
216 # the needed CFLAGS have already been provided
217 fuzz_exe_ldflags = get_option('fuzzing_engine').split()
218 endif
ff9ed62b
AB
219endif
220
4cb37d11 221add_global_arguments(qemu_cflags, native: false, language: ['c'])
8cc2d231 222add_global_arguments(qemu_cxxflags, native: false, language: ['cpp'])
4cb37d11 223add_global_arguments(qemu_objcflags, native: false, language: ['objc'])
8cc2d231 224add_global_link_arguments(qemu_ldflags, native: false, language: ['c', 'cpp', 'objc'])
a5665051 225
1e6e616d
PB
226if targetos == 'linux'
227 add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers',
228 '-isystem', 'linux-headers',
229 language: ['c', 'cpp'])
230endif
231
23a77b2d 232add_project_arguments('-iquote', '.',
1e6e616d 233 '-iquote', meson.current_source_dir(),
1e6e616d
PB
234 '-iquote', meson.current_source_dir() / 'include',
235 '-iquote', meson.current_source_dir() / 'disas/libvixl',
236 language: ['c', 'cpp', 'objc'])
c46f76d1 237
fc929892
MAL
238link_language = meson.get_external_property('link_language', 'cpp')
239if link_language == 'cpp'
240 add_languages('cpp', required: true, native: false)
565174d0
PB
241 cxx = meson.get_compiler('cpp')
242 linker = cxx
243else
244 linker = cc
fc929892 245endif
a5665051
PB
246if host_machine.system() == 'darwin'
247 add_languages('objc', required: false, native: false)
248endif
249
deb62371
PB
250sparse = find_program('cgcc', required: get_option('sparse'))
251if sparse.found()
968b4db3
PB
252 run_target('sparse',
253 command: [find_program('scripts/check_sparse.py'),
deb62371
PB
254 'compile_commands.json', sparse.full_path(), '-Wbitwise',
255 '-Wno-transparent-union', '-Wno-old-initializer',
256 '-Wno-non-pointer-null'])
968b4db3
PB
257endif
258
6ec0e15d
PB
259###########################################
260# Target-specific checks and dependencies #
261###########################################
262
b7a75c8c 263# Fuzzing
537b7248
PB
264if get_option('fuzzing') and get_option('fuzzing_engine') == '' and \
265 not cc.links('''
266 #include <stdint.h>
267 #include <sys/types.h>
268 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
269 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; }
270 ''',
271 args: ['-Werror', '-fsanitize=fuzzer'])
272 error('Your compiler does not support -fsanitize=fuzzer')
273endif
274
b7a75c8c 275# Tracing backends
9c29b741
PB
276if 'ftrace' in get_option('trace_backends') and targetos != 'linux'
277 error('ftrace is supported only on Linux')
278endif
279if 'syslog' in get_option('trace_backends') and not cc.compiles('''
280 #include <syslog.h>
281 int main(void) {
282 openlog("qemu", LOG_PID, LOG_DAEMON);
283 syslog(LOG_INFO, "configure");
284 return 0;
285 }''')
286 error('syslog is not supported on this system')
287endif
288
b7a75c8c 289# Miscellaneous Linux-only features
a436d6d4
PB
290get_option('mpath') \
291 .require(targetos == 'linux', error_message: 'Multipath is supported only on Linux')
6ec0e15d 292
a436d6d4
PB
293multiprocess_allowed = get_option('multiprocess') \
294 .require(targetos == 'linux', error_message: 'Multiprocess QEMU is supported only on Linux') \
295 .allowed()
106ad1f9 296
0d04c4c9
PB
297have_tpm = get_option('tpm') \
298 .require(targetos != 'windows', error_message: 'TPM emulation only available on POSIX systems') \
299 .allowed()
300
b7a75c8c 301# Target-specific libraries and flags
7fa1c635 302libm = cc.find_library('m', required: false)
6d7c7c2d 303threads = dependency('threads')
a81df1b6 304util = cc.find_library('util', required: false)
4a96337d 305winmm = []
a81df1b6 306socket = []
04c6f1e7 307version_res = []
d92989aa
MAL
308coref = []
309iokit = []
b6c7cfd4 310emulator_link_args = []
74a414a1 311nvmm =not_found
8a19980e 312hvf = not_found
23011f44
MAL
313midl = not_found
314widl = not_found
a6305081 315host_dsosuf = '.so'
a81df1b6 316if targetos == 'windows'
23011f44
MAL
317 midl = find_program('midl', required: false)
318 widl = find_program('widl', required: false)
a81df1b6 319 socket = cc.find_library('ws2_32')
4a96337d 320 winmm = cc.find_library('winmm')
04c6f1e7
MAL
321
322 win = import('windows')
323 version_res = win.compile_resources('version.rc',
324 depend_files: files('pc-bios/qemu-nsis.ico'),
325 include_directories: include_directories('.'))
a6305081 326 host_dsosuf = '.dll'
d92989aa
MAL
327elif targetos == 'darwin'
328 coref = dependency('appleframeworks', modules: 'CoreFoundation')
14176c8d 329 iokit = dependency('appleframeworks', modules: 'IOKit', required: false)
a6305081 330 host_dsosuf = '.dylib'
cfad62f1
PB
331elif targetos == 'sunos'
332 socket = [cc.find_library('socket'),
333 cc.find_library('nsl'),
334 cc.find_library('resolv')]
335elif targetos == 'haiku'
336 socket = [cc.find_library('posix_error_mapper'),
337 cc.find_library('network'),
338 cc.find_library('bsd')]
b6c7cfd4 339elif targetos == 'openbsd'
43a363ae 340 if get_option('tcg').allowed() and target_dirs.length() > 0
b6c7cfd4
PB
341 # Disable OpenBSD W^X if available
342 emulator_link_args = cc.get_supported_link_arguments('-Wl,-z,wxneeded')
343 endif
a81df1b6 344endif
6ec0e15d 345
b7a75c8c 346# Target-specific configuration of accelerators
8a19980e 347accelerators = []
43a363ae 348if get_option('kvm').allowed() and targetos == 'linux'
8a19980e
PB
349 accelerators += 'CONFIG_KVM'
350endif
43a363ae 351if get_option('whpx').allowed() and targetos == 'windows'
57e2a1f8 352 if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64'
8a19980e
PB
353 error('WHPX requires 64-bit host')
354 elif cc.has_header('WinHvPlatform.h', required: get_option('whpx')) and \
355 cc.has_header('WinHvEmulation.h', required: get_option('whpx'))
356 accelerators += 'CONFIG_WHPX'
357 endif
358endif
43a363ae 359if get_option('hvf').allowed()
8a19980e
PB
360 hvf = dependency('appleframeworks', modules: 'Hypervisor',
361 required: get_option('hvf'))
362 if hvf.found()
363 accelerators += 'CONFIG_HVF'
364 endif
365endif
43a363ae 366if get_option('hax').allowed()
8a19980e
PB
367 if get_option('hax').enabled() or targetos in ['windows', 'darwin', 'netbsd']
368 accelerators += 'CONFIG_HAX'
369 endif
370endif
74a414a1 371if targetos == 'netbsd'
0cc49650 372 nvmm = cc.find_library('nvmm', required: get_option('nvmm'))
74a414a1
RZ
373 if nvmm.found()
374 accelerators += 'CONFIG_NVMM'
375 endif
376endif
23a77b2d 377
823eb013 378tcg_arch = host_arch
43a363ae 379if get_option('tcg').allowed()
823eb013 380 if host_arch == 'unknown'
23a77b2d 381 if get_option('tcg_interpreter')
f1f727ac 382 warning('Unsupported CPU @0@, will use TCG with TCI (slow)'.format(cpu))
8a19980e
PB
383 else
384 error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
385 endif
fa2f7b0b 386 elif get_option('tcg_interpreter')
1c282da3 387 warning('Use of the TCG interpreter is not recommended on this host')
fa2f7b0b
PMD
388 warning('architecture. There is a native TCG execution backend available')
389 warning('which provides substantially better performance and reliability.')
390 warning('It is strongly recommended to remove the --enable-tcg-interpreter')
391 warning('configuration option on this architecture to use the native')
392 warning('backend.')
8a19980e 393 endif
23a77b2d
PB
394 if get_option('tcg_interpreter')
395 tcg_arch = 'tci'
823eb013 396 elif host_arch == 'sparc64'
23a77b2d 397 tcg_arch = 'sparc'
823eb013 398 elif host_arch == 'x86_64'
23a77b2d 399 tcg_arch = 'i386'
823eb013 400 elif host_arch == 'ppc64'
23a77b2d 401 tcg_arch = 'ppc'
23a77b2d
PB
402 endif
403 add_project_arguments('-iquote', meson.current_source_dir() / 'tcg' / tcg_arch,
23a77b2d
PB
404 language: ['c', 'cpp', 'objc'])
405
8a19980e
PB
406 accelerators += 'CONFIG_TCG'
407 config_host += { 'CONFIG_TCG': 'y' }
408endif
409
410if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled()
411 error('KVM not available on this platform')
412endif
413if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled()
414 error('HVF not available on this platform')
415endif
74a414a1
RZ
416if 'CONFIG_NVMM' not in accelerators and get_option('nvmm').enabled()
417 error('NVMM not available on this platform')
418endif
8a19980e
PB
419if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled()
420 error('WHPX not available on this platform')
421endif
b4e312e9 422
6ec0e15d
PB
423################
424# Dependencies #
425################
426
215b0c2f
PB
427# The path to glib.h is added to all compilation commands. This was
428# grandfathered in from the QEMU Makefiles.
429add_project_arguments(config_host['GLIB_CFLAGS'].split(),
430 native: false, language: ['c', 'cpp', 'objc'])
953d5a9e 431glib = declare_dependency(compile_args: config_host['GLIB_CFLAGS'].split(),
d83acfd0
MAL
432 link_args: config_host['GLIB_LIBS'].split(),
433 version: config_host['GLIB_VERSION'])
953d5a9e
MAL
434# override glib dep with the configure results (for subprojects)
435meson.override_dependency('glib-2.0', glib)
436
a81df1b6 437gio = not_found
7544060e
PB
438gdbus_codegen = not_found
439if not get_option('gio').auto() or have_system
440 gio = dependency('gio-2.0', required: get_option('gio'),
441 method: 'pkg-config', kwargs: static_kwargs)
442 if gio.found() and not cc.links('''
443 #include <gio/gio.h>
444 int main(void)
445 {
446 g_dbus_proxy_new_sync(0, 0, 0, 0, 0, 0, 0, 0);
447 return 0;
448 }''', dependencies: [glib, gio])
449 if get_option('gio').enabled()
450 error('The installed libgio is broken for static linking')
451 endif
452 gio = not_found
453 endif
454 if gio.found()
455 gdbus_codegen = find_program(gio.get_variable('gdbus_codegen'),
456 required: get_option('gio'))
457 gio_unix = dependency('gio-unix-2.0', required: get_option('gio'),
458 method: 'pkg-config', kwargs: static_kwargs)
459 gio = declare_dependency(dependencies: [gio, gio_unix],
460 version: gio.version())
461 endif
a81df1b6 462endif
7544060e 463
a81df1b6 464lttng = not_found
9c29b741 465if 'ust' in get_option('trace_backends')
e32aaa5a
MAL
466 lttng = dependency('lttng-ust', required: true, version: '>= 2.1',
467 method: 'pkg-config', kwargs: static_kwargs)
a81df1b6 468endif
b7612f45
PB
469pixman = not_found
470if have_system or have_tools
471 pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8',
d7dedf42 472 method: 'pkg-config', kwargs: static_kwargs)
b7612f45 473endif
d7dedf42 474zlib = dependency('zlib', required: true, kwargs: static_kwargs)
53c22b68 475
ff66f3e5
PB
476libaio = not_found
477if not get_option('linux_aio').auto() or have_block
478 libaio = cc.find_library('aio', has_headers: ['libaio.h'],
479 required: get_option('linux_aio'),
480 kwargs: static_kwargs)
481endif
5e5733e5 482linux_io_uring = not_found
53c22b68 483if not get_option('linux_io_uring').auto() or have_block
a41b4fdc
DB
484 linux_io_uring = dependency('liburing', version: '>=0.3',
485 required: get_option('linux_io_uring'),
53c22b68 486 method: 'pkg-config', kwargs: static_kwargs)
5e5733e5 487endif
5e5733e5 488libnfs = not_found
30045c05
PB
489if not get_option('libnfs').auto() or have_block
490 libnfs = dependency('libnfs', version: '>=1.9.3',
491 required: get_option('libnfs'),
d7dedf42 492 method: 'pkg-config', kwargs: static_kwargs)
5e5733e5 493endif
f7f2d651
PB
494
495libattr_test = '''
496 #include <stddef.h>
497 #include <sys/types.h>
498 #ifdef CONFIG_LIBATTR
499 #include <attr/xattr.h>
500 #else
501 #include <sys/xattr.h>
502 #endif
503 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }'''
504
ec0d5893 505libattr = not_found
f7f2d651 506have_old_libattr = false
43a363ae 507if get_option('attr').allowed()
f7f2d651
PB
508 if cc.links(libattr_test)
509 libattr = declare_dependency()
510 else
511 libattr = cc.find_library('attr', has_headers: ['attr/xattr.h'],
512 required: get_option('attr'),
d7dedf42 513 kwargs: static_kwargs)
f7f2d651
PB
514 if libattr.found() and not \
515 cc.links(libattr_test, dependencies: libattr, args: '-DCONFIG_LIBATTR')
516 libattr = not_found
517 if get_option('attr').enabled()
518 error('could not link libattr')
519 else
520 warning('could not link libattr, disabling')
521 endif
522 else
523 have_old_libattr = libattr.found()
524 endif
525 endif
ec0d5893 526endif
f7f2d651 527
c1ec4941
PB
528cocoa = dependency('appleframeworks', modules: 'Cocoa', required: get_option('cocoa'))
529if cocoa.found() and get_option('sdl').enabled()
530 error('Cocoa and SDL cannot be enabled at the same time')
531endif
532if cocoa.found() and get_option('gtk').enabled()
533 error('Cocoa and GTK+ cannot be enabled at the same time')
534endif
535
3f99cf57 536seccomp = not_found
90835c2b
PB
537if not get_option('seccomp').auto() or have_system or have_tools
538 seccomp = dependency('libseccomp', version: '>=2.3.0',
539 required: get_option('seccomp'),
d7dedf42 540 method: 'pkg-config', kwargs: static_kwargs)
3f99cf57 541endif
727c8bb8 542
3f99cf57 543libcap_ng = not_found
727c8bb8
PB
544if not get_option('cap_ng').auto() or have_system or have_tools
545 libcap_ng = cc.find_library('cap-ng', has_headers: ['cap-ng.h'],
546 required: get_option('cap_ng'),
d7dedf42 547 kwargs: static_kwargs)
727c8bb8
PB
548endif
549if libcap_ng.found() and not cc.links('''
550 #include <cap-ng.h>
551 int main(void)
552 {
553 capng_capability_to_name(CAPNG_EFFECTIVE);
554 return 0;
555 }''', dependencies: libcap_ng)
556 libcap_ng = not_found
557 if get_option('cap_ng').enabled()
558 error('could not link libcap-ng')
559 else
560 warning('could not link libcap-ng, disabling')
561 endif
3f99cf57 562endif
727c8bb8 563
1917ec6d
PB
564if get_option('xkbcommon').auto() and not have_system and not have_tools
565 xkbcommon = not_found
566else
567 xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'),
d7dedf42 568 method: 'pkg-config', kwargs: static_kwargs)
ade60d4f 569endif
e1723999 570
cdaf0722 571vde = not_found
e1723999
PB
572if not get_option('vde').auto() or have_system or have_tools
573 vde = cc.find_library('vdeplug', has_headers: ['libvdeplug.h'],
574 required: get_option('vde'),
575 kwargs: static_kwargs)
576endif
577if vde.found() and not cc.links('''
578 #include <libvdeplug.h>
579 int main(void)
580 {
581 struct vde_open_args a = {0, 0, 0};
582 char s[] = "";
583 vde_open(s, s, &a);
584 return 0;
585 }''', dependencies: vde)
586 vde = not_found
587 if get_option('cap_ng').enabled()
588 error('could not link libvdeplug')
589 else
590 warning('could not link libvdeplug, disabling')
591 endif
cdaf0722 592endif
87430d5b 593
478e943f 594pulse = not_found
87430d5b
PB
595if not get_option('pa').auto() or (targetos == 'linux' and have_system)
596 pulse = dependency('libpulse', required: get_option('pa'),
597 method: 'pkg-config', kwargs: static_kwargs)
478e943f
PB
598endif
599alsa = not_found
87430d5b
PB
600if not get_option('alsa').auto() or (targetos == 'linux' and have_system)
601 alsa = dependency('alsa', required: get_option('alsa'),
602 method: 'pkg-config', kwargs: static_kwargs)
478e943f
PB
603endif
604jack = not_found
87430d5b
PB
605if not get_option('jack').auto() or have_system
606 jack = dependency('jack', required: get_option('jack'),
607 method: 'pkg-config', kwargs: static_kwargs)
478e943f 608endif
87430d5b 609
58d3f3ff 610spice_protocol = not_found
3f0a5d55
MAL
611if not get_option('spice_protocol').auto() or have_system
612 spice_protocol = dependency('spice-protocol', version: '>=0.12.3',
613 required: get_option('spice_protocol'),
614 method: 'pkg-config', kwargs: static_kwargs)
2634733c 615endif
3f0a5d55
MAL
616spice = not_found
617if not get_option('spice').auto() or have_system
618 spice = dependency('spice-server', version: '>=0.12.5',
619 required: get_option('spice'),
620 method: 'pkg-config', kwargs: static_kwargs)
58d3f3ff 621endif
3f0a5d55
MAL
622spice_headers = spice.partial_dependency(compile_args: true, includes: true)
623
5ee24e78 624rt = cc.find_library('rt', required: false)
a399f914 625
99650b62 626libiscsi = not_found
9db405a3
PB
627if not get_option('libiscsi').auto() or have_block
628 libiscsi = dependency('libiscsi', version: '>=1.9.0',
629 required: get_option('libiscsi'),
d7dedf42 630 method: 'pkg-config', kwargs: static_kwargs)
99650b62 631endif
5e5733e5 632zstd = not_found
b1def33d
PB
633if not get_option('zstd').auto() or have_block
634 zstd = dependency('libzstd', version: '>=1.4.0',
635 required: get_option('zstd'),
d7dedf42 636 method: 'pkg-config', kwargs: static_kwargs)
5e5733e5 637endif
ea458960 638virgl = not_found
0265fe9e
PB
639
640have_vhost_user_gpu = have_tools and targetos == 'linux' and pixman.found()
641if not get_option('virglrenderer').auto() or have_system or have_vhost_user_gpu
587d59d6
PB
642 virgl = dependency('virglrenderer',
643 method: 'pkg-config',
644 required: get_option('virglrenderer'),
645 kwargs: static_kwargs)
ea458960 646endif
1d7bb6ab 647curl = not_found
f9cd86fe
PB
648if not get_option('curl').auto() or have_block
649 curl = dependency('libcurl', version: '>=7.29.0',
650 method: 'pkg-config',
651 required: get_option('curl'),
d7dedf42 652 kwargs: static_kwargs)
1d7bb6ab 653endif
f15bff25 654libudev = not_found
f01496a3 655if targetos == 'linux' and (have_system or have_tools)
6ec0e15d 656 libudev = dependency('libudev',
a0fbbb6e 657 method: 'pkg-config',
5c53015a 658 required: get_option('libudev'),
d7dedf42 659 kwargs: static_kwargs)
6ec0e15d
PB
660endif
661
5c53015a 662mpathlibs = [libudev]
6ec0e15d
PB
663mpathpersist = not_found
664mpathpersist_new_api = false
43a363ae 665if targetos == 'linux' and have_tools and get_option('mpath').allowed()
6ec0e15d
PB
666 mpath_test_source_new = '''
667 #include <libudev.h>
668 #include <mpath_persist.h>
669 unsigned mpath_mx_alloc_len = 1024;
670 int logsink;
671 static struct config *multipath_conf;
672 extern struct udev *udev;
673 extern struct config *get_multipath_config(void);
674 extern void put_multipath_config(struct config *conf);
675 struct udev *udev;
676 struct config *get_multipath_config(void) { return multipath_conf; }
677 void put_multipath_config(struct config *conf) { }
678 int main(void) {
679 udev = udev_new();
680 multipath_conf = mpath_lib_init();
681 return 0;
682 }'''
683 mpath_test_source_old = '''
684 #include <libudev.h>
685 #include <mpath_persist.h>
686 unsigned mpath_mx_alloc_len = 1024;
687 int logsink;
688 int main(void) {
689 struct udev *udev = udev_new();
690 mpath_lib_init(udev);
691 return 0;
692 }'''
5c53015a
PB
693 libmpathpersist = cc.find_library('mpathpersist',
694 required: get_option('mpath'),
d7dedf42 695 kwargs: static_kwargs)
5c53015a
PB
696 if libmpathpersist.found()
697 mpathlibs += libmpathpersist
698 if enable_static
699 mpathlibs += cc.find_library('devmapper',
700 required: get_option('mpath'),
d7dedf42 701 kwargs: static_kwargs)
43b43a40 702 endif
5c53015a
PB
703 mpathlibs += cc.find_library('multipath',
704 required: get_option('mpath'),
d7dedf42 705 kwargs: static_kwargs)
5c53015a
PB
706 foreach lib: mpathlibs
707 if not lib.found()
708 mpathlibs = []
709 break
710 endif
711 endforeach
712 if mpathlibs.length() == 0
713 msg = 'Dependencies missing for libmpathpersist'
714 elif cc.links(mpath_test_source_new, dependencies: mpathlibs)
6ec0e15d
PB
715 mpathpersist = declare_dependency(dependencies: mpathlibs)
716 mpathpersist_new_api = true
717 elif cc.links(mpath_test_source_old, dependencies: mpathlibs)
718 mpathpersist = declare_dependency(dependencies: mpathlibs)
719 else
5c53015a
PB
720 msg = 'Cannot detect libmpathpersist API'
721 endif
722 if not mpathpersist.found()
6ec0e15d 723 if get_option('mpath').enabled()
5c53015a 724 error(msg)
6ec0e15d 725 else
5c53015a 726 warning(msg + ', disabling')
6ec0e15d
PB
727 endif
728 endif
729 endif
f15bff25 730endif
6ec0e15d 731
5285e593 732iconv = not_found
5285e593 733curses = not_found
43a363ae 734if have_system and get_option('curses').allowed()
925a40df 735 curses_test = '''
fbab8cc2
SW
736 #if defined(__APPLE__) || defined(__OpenBSD__)
737 #define _XOPEN_SOURCE_EXTENDED 1
738 #endif
925a40df
PB
739 #include <locale.h>
740 #include <curses.h>
741 #include <wchar.h>
742 int main(void) {
743 wchar_t wch = L'w';
744 setlocale(LC_ALL, "");
745 resize_term(0, 0);
746 addwstr(L"wide chars\n");
747 addnwstr(&wch, 1);
748 add_wch(WACS_DEGREE);
749 return 0;
750 }'''
751
ca31e307
YL
752 curses_dep_list = targetos == 'windows' ? ['ncurses', 'ncursesw'] : ['ncursesw']
753 foreach curses_dep : curses_dep_list
754 if not curses.found()
755 curses = dependency(curses_dep,
756 required: false,
757 method: 'pkg-config',
d7dedf42 758 kwargs: static_kwargs)
ca31e307
YL
759 endif
760 endforeach
925a40df 761 msg = get_option('curses').enabled() ? 'curses library not found' : ''
fbab8cc2 762 curses_compile_args = ['-DNCURSES_WIDECHAR=1']
925a40df 763 if curses.found()
0dbce6ef
PB
764 if cc.links(curses_test, args: curses_compile_args, dependencies: [curses])
765 curses = declare_dependency(compile_args: curses_compile_args, dependencies: [curses])
925a40df
PB
766 else
767 msg = 'curses package not usable'
768 curses = not_found
5285e593
YL
769 endif
770 endif
925a40df 771 if not curses.found()
925a40df
PB
772 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
773 if targetos != 'windows' and not has_curses_h
774 message('Trying with /usr/include/ncursesw')
775 curses_compile_args += ['-I/usr/include/ncursesw']
776 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
777 endif
778 if has_curses_h
779 curses_libname_list = (targetos == 'windows' ? ['pdcurses'] : ['ncursesw', 'cursesw'])
780 foreach curses_libname : curses_libname_list
5285e593
YL
781 libcurses = cc.find_library(curses_libname,
782 required: false,
d7dedf42 783 kwargs: static_kwargs)
925a40df
PB
784 if libcurses.found()
785 if cc.links(curses_test, args: curses_compile_args, dependencies: libcurses)
786 curses = declare_dependency(compile_args: curses_compile_args,
787 dependencies: [libcurses])
788 break
789 else
790 msg = 'curses library not usable'
791 endif
5285e593 792 endif
925a40df
PB
793 endforeach
794 endif
795 endif
43a363ae 796 if get_option('iconv').allowed()
925a40df
PB
797 foreach link_args : [ ['-liconv'], [] ]
798 # Programs will be linked with glib and this will bring in libiconv on FreeBSD.
799 # We need to use libiconv if available because mixing libiconv's headers with
800 # the system libc does not work.
801 # However, without adding glib to the dependencies -L/usr/local/lib will not be
802 # included in the command line and libiconv will not be found.
803 if cc.links('''
804 #include <iconv.h>
805 int main(void) {
806 iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
807 return conv != (iconv_t) -1;
808 }''', args: config_host['GLIB_CFLAGS'].split() + config_host['GLIB_LIBS'].split() + link_args)
809 iconv = declare_dependency(link_args: link_args, dependencies: glib)
810 break
5285e593 811 endif
30fe76b1
PB
812 endforeach
813 endif
925a40df
PB
814 if curses.found() and not iconv.found()
815 if get_option('iconv').enabled()
816 error('iconv not available')
817 endif
818 msg = 'iconv required for curses UI but not available'
819 curses = not_found
820 endif
821 if not curses.found() and msg != ''
822 if get_option('curses').enabled()
823 error(msg)
30fe76b1 824 else
925a40df 825 warning(msg + ', disabling')
30fe76b1 826 endif
5285e593
YL
827 endif
828endif
829
2634733c 830brlapi = not_found
8c6d4ff4
PB
831if not get_option('brlapi').auto() or have_system
832 brlapi = cc.find_library('brlapi', has_headers: ['brlapi.h'],
833 required: get_option('brlapi'),
d7dedf42 834 kwargs: static_kwargs)
8c6d4ff4
PB
835 if brlapi.found() and not cc.links('''
836 #include <brlapi.h>
837 #include <stddef.h>
838 int main(void) { return brlapi__openConnection (NULL, NULL, NULL); }''', dependencies: brlapi)
839 brlapi = not_found
840 if get_option('brlapi').enabled()
841 error('could not link brlapi')
842 else
843 warning('could not link brlapi, disabling')
844 endif
845 endif
2634733c 846endif
35be72ba 847
760e4327 848sdl = not_found
c1ec4941 849if not get_option('sdl').auto() or (have_system and not cocoa.found())
d7dedf42 850 sdl = dependency('sdl2', required: get_option('sdl'), kwargs: static_kwargs)
760e4327
PB
851 sdl_image = not_found
852endif
35be72ba
PB
853if sdl.found()
854 # work around 2.0.8 bug
855 sdl = declare_dependency(compile_args: '-Wno-undef',
856 dependencies: sdl)
7161a433 857 sdl_image = dependency('SDL2_image', required: get_option('sdl_image'),
d7dedf42 858 method: 'pkg-config', kwargs: static_kwargs)
35be72ba
PB
859else
860 if get_option('sdl_image').enabled()
a8dc2ace
ST
861 error('sdl-image required, but SDL was @0@'.format(
862 get_option('sdl').disabled() ? 'disabled' : 'not found'))
35be72ba
PB
863 endif
864 sdl_image = not_found
2634733c 865endif
35be72ba 866
5e5733e5 867rbd = not_found
fabd1e93
PB
868if not get_option('rbd').auto() or have_block
869 librados = cc.find_library('rados', required: get_option('rbd'),
d7dedf42 870 kwargs: static_kwargs)
fabd1e93
PB
871 librbd = cc.find_library('rbd', has_headers: ['rbd/librbd.h'],
872 required: get_option('rbd'),
d7dedf42 873 kwargs: static_kwargs)
c518d6c2
PB
874 if librados.found() and librbd.found()
875 if cc.links('''
876 #include <stdio.h>
877 #include <rbd/librbd.h>
878 int main(void) {
879 rados_t cluster;
880 rados_create(&cluster, NULL);
48672ac0
PL
881 #if LIBRBD_VERSION_CODE < LIBRBD_VERSION(1, 12, 0)
882 #error
883 #endif
c518d6c2
PB
884 return 0;
885 }''', dependencies: [librbd, librados])
886 rbd = declare_dependency(dependencies: [librbd, librados])
887 elif get_option('rbd').enabled()
48672ac0 888 error('librbd >= 1.12.0 required')
c518d6c2 889 else
48672ac0 890 warning('librbd >= 1.12.0 not found, disabling')
c518d6c2 891 endif
fabd1e93 892 endif
5e5733e5 893endif
fabd1e93 894
5e5733e5 895glusterfs = not_found
08821ca2
PB
896glusterfs_ftruncate_has_stat = false
897glusterfs_iocb_has_stat = false
898if not get_option('glusterfs').auto() or have_block
899 glusterfs = dependency('glusterfs-api', version: '>=3',
900 required: get_option('glusterfs'),
d7dedf42 901 method: 'pkg-config', kwargs: static_kwargs)
08821ca2
PB
902 if glusterfs.found()
903 glusterfs_ftruncate_has_stat = cc.links('''
904 #include <glusterfs/api/glfs.h>
905
906 int
907 main(void)
908 {
909 /* new glfs_ftruncate() passes two additional args */
910 return glfs_ftruncate(NULL, 0, NULL, NULL);
911 }
912 ''', dependencies: glusterfs)
913 glusterfs_iocb_has_stat = cc.links('''
914 #include <glusterfs/api/glfs.h>
915
916 /* new glfs_io_cbk() passes two additional glfs_stat structs */
917 static void
918 glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data)
919 {}
920
921 int
922 main(void)
923 {
924 glfs_io_cbk iocb = &glusterfs_iocb;
925 iocb(NULL, 0 , NULL, NULL, NULL);
926 return 0;
927 }
928 ''', dependencies: glusterfs)
929 endif
5e5733e5 930endif
e6a52b36 931
5e5733e5 932libssh = not_found
e6a52b36
TH
933if not get_option('libssh').auto() or have_block
934 libssh = dependency('libssh', version: '>=0.8.7',
935 method: 'pkg-config',
936 required: get_option('libssh'),
937 kwargs: static_kwargs)
5e5733e5 938endif
e6a52b36 939
5e5733e5 940libbzip2 = not_found
29ba6116
PB
941if not get_option('bzip2').auto() or have_block
942 libbzip2 = cc.find_library('bz2', has_headers: ['bzlib.h'],
943 required: get_option('bzip2'),
d7dedf42 944 kwargs: static_kwargs)
29ba6116
PB
945 if libbzip2.found() and not cc.links('''
946 #include <bzlib.h>
947 int main(void) { BZ2_bzlibVersion(); return 0; }''', dependencies: libbzip2)
948 libbzip2 = not_found
949 if get_option('bzip2').enabled()
950 error('could not link libbzip2')
951 else
952 warning('could not link libbzip2, disabling')
953 endif
954 endif
5e5733e5 955endif
ecea3696 956
5e5733e5 957liblzfse = not_found
ecea3696
PB
958if not get_option('lzfse').auto() or have_block
959 liblzfse = cc.find_library('lzfse', has_headers: ['lzfse.h'],
960 required: get_option('lzfse'),
d7dedf42 961 kwargs: static_kwargs)
ecea3696
PB
962endif
963if liblzfse.found() and not cc.links('''
964 #include <lzfse.h>
965 int main(void) { lzfse_decode_scratch_size(); return 0; }''', dependencies: liblzfse)
966 liblzfse = not_found
967 if get_option('lzfse').enabled()
968 error('could not link liblzfse')
969 else
970 warning('could not link liblzfse, disabling')
971 endif
5e5733e5 972endif
ecea3696 973
478e943f 974oss = not_found
43a363ae 975if get_option('oss').allowed() and have_system
87430d5b
PB
976 if not cc.has_header('sys/soundcard.h')
977 # not found
978 elif targetos == 'netbsd'
979 oss = cc.find_library('ossaudio', required: get_option('oss'),
980 kwargs: static_kwargs)
981 else
982 oss = declare_dependency()
983 endif
984
985 if not oss.found()
986 if get_option('oss').enabled()
987 error('OSS not found')
87430d5b
PB
988 endif
989 endif
478e943f
PB
990endif
991dsound = not_found
87430d5b
PB
992if not get_option('dsound').auto() or (targetos == 'windows' and have_system)
993 if cc.has_header('dsound.h')
994 dsound = declare_dependency(link_args: ['-lole32', '-ldxguid'])
995 endif
996
997 if not dsound.found()
998 if get_option('dsound').enabled()
999 error('DirectSound not found')
87430d5b
PB
1000 endif
1001 endif
478e943f 1002endif
87430d5b 1003
478e943f 1004coreaudio = not_found
87430d5b
PB
1005if not get_option('coreaudio').auto() or (targetos == 'darwin' and have_system)
1006 coreaudio = dependency('appleframeworks', modules: 'CoreAudio',
1007 required: get_option('coreaudio'))
2b1ccdf4 1008endif
8bc5184d 1009
2b1ccdf4 1010opengl = not_found
88b6e618
PB
1011if not get_option('opengl').auto() or have_system or have_vhost_user_gpu
1012 epoxy = dependency('epoxy', method: 'pkg-config',
1013 required: get_option('opengl'), kwargs: static_kwargs)
1014 if cc.has_header('epoxy/egl.h', dependencies: epoxy)
1015 opengl = epoxy
1016 elif get_option('opengl').enabled()
1017 error('epoxy/egl.h not found')
1018 endif
2b1ccdf4 1019endif
8bc5184d
TH
1020gbm = not_found
1021if (have_system or have_tools) and (virgl.found() or opengl.found())
1022 gbm = dependency('gbm', method: 'pkg-config', required: false,
1023 kwargs: static_kwargs)
1024endif
0265fe9e 1025have_vhost_user_gpu = have_vhost_user_gpu and virgl.found() and gbm.found()
1b695471 1026
57612511 1027gnutls = not_found
cc4c7c73 1028gnutls_crypto = not_found
abc14fd0 1029if get_option('gnutls').enabled() or (get_option('gnutls').auto() and have_system)
cc4c7c73
DB
1030 # For general TLS support our min gnutls matches
1031 # that implied by our platform support matrix
1032 #
1033 # For the crypto backends, we look for a newer
1034 # gnutls:
1035 #
1036 # Version 3.6.8 is needed to get XTS
1037 # Version 3.6.13 is needed to get PBKDF
1038 # Version 3.6.14 is needed to get HW accelerated XTS
1039 #
1040 # If newer enough gnutls isn't available, we can
1041 # still use a different crypto backend to satisfy
1042 # the platform support requirements
1043 gnutls_crypto = dependency('gnutls', version: '>=3.6.14',
1044 method: 'pkg-config',
1045 required: false,
1046 kwargs: static_kwargs)
1047 if gnutls_crypto.found()
1048 gnutls = gnutls_crypto
1049 else
1050 # Our min version if all we need is TLS
1051 gnutls = dependency('gnutls', version: '>=3.5.18',
1052 method: 'pkg-config',
1053 required: get_option('gnutls'),
1054 kwargs: static_kwargs)
1055 endif
57612511
PB
1056endif
1057
8bd0931f
DB
1058# We prefer use of gnutls for crypto, unless the options
1059# explicitly asked for nettle or gcrypt.
1060#
1061# If gnutls isn't available for crypto, then we'll prefer
1062# gcrypt over nettle for performance reasons.
57612511
PB
1063gcrypt = not_found
1064nettle = not_found
68014044 1065xts = 'none'
8bd0931f 1066
57612511
PB
1067if get_option('nettle').enabled() and get_option('gcrypt').enabled()
1068 error('Only one of gcrypt & nettle can be enabled')
57612511 1069endif
8bd0931f
DB
1070
1071# Explicit nettle/gcrypt request, so ignore gnutls for crypto
1072if get_option('nettle').enabled() or get_option('gcrypt').enabled()
cc4c7c73
DB
1073 gnutls_crypto = not_found
1074endif
57612511 1075
8bd0931f
DB
1076if not gnutls_crypto.found()
1077 if (not get_option('gcrypt').auto() or have_system) and not get_option('nettle').enabled()
1078 gcrypt = dependency('libgcrypt', version: '>=1.8',
1079 method: 'config-tool',
1080 required: get_option('gcrypt'),
1081 kwargs: static_kwargs)
1082 # Debian has removed -lgpg-error from libgcrypt-config
1083 # as it "spreads unnecessary dependencies" which in
1084 # turn breaks static builds...
1085 if gcrypt.found() and enable_static
1086 gcrypt = declare_dependency(dependencies: [
1087 gcrypt,
1088 cc.find_library('gpg-error', required: true, kwargs: static_kwargs)])
1089 endif
57612511 1090 endif
8bd0931f
DB
1091 if (not get_option('nettle').auto() or have_system) and not gcrypt.found()
1092 nettle = dependency('nettle', version: '>=3.4',
1093 method: 'pkg-config',
1094 required: get_option('nettle'),
1095 kwargs: static_kwargs)
1096 if nettle.found() and not cc.has_header('nettle/xts.h', dependencies: nettle)
1097 xts = 'private'
1098 endif
57612511
PB
1099 endif
1100endif
1101
2b1ccdf4 1102gtk = not_found
1b695471 1103gtkx11 = not_found
c23d7b4e 1104vte = not_found
c1ec4941 1105if not get_option('gtk').auto() or (have_system and not cocoa.found())
1b695471
PB
1106 gtk = dependency('gtk+-3.0', version: '>=3.22.0',
1107 method: 'pkg-config',
1108 required: get_option('gtk'),
d7dedf42 1109 kwargs: static_kwargs)
1b695471
PB
1110 if gtk.found()
1111 gtkx11 = dependency('gtk+-x11-3.0', version: '>=3.22.0',
1112 method: 'pkg-config',
1113 required: false,
d7dedf42 1114 kwargs: static_kwargs)
1b695471 1115 gtk = declare_dependency(dependencies: [gtk, gtkx11])
c23d7b4e
PB
1116
1117 if not get_option('vte').auto() or have_system
1118 vte = dependency('vte-2.91',
1119 method: 'pkg-config',
1120 required: get_option('vte'),
1121 kwargs: static_kwargs)
1122 endif
1b695471 1123 endif
2b1ccdf4 1124endif
1b695471 1125
2b1ccdf4 1126x11 = not_found
9d49bcf6 1127if gtkx11.found()
1b695471 1128 x11 = dependency('x11', method: 'pkg-config', required: gtkx11.found(),
d7dedf42 1129 kwargs: static_kwargs)
2b1ccdf4 1130endif
2b1ccdf4 1131png = not_found
95f8510e
KS
1132if get_option('png').allowed() and have_system
1133 png = dependency('libpng', required: get_option('png'),
1134 method: 'pkg-config', kwargs: static_kwargs)
1135endif
1136vnc = not_found
2b1ccdf4 1137jpeg = not_found
2b1ccdf4 1138sasl = not_found
43a363ae 1139if get_option('vnc').allowed() and have_system
a0b93237 1140 vnc = declare_dependency() # dummy dependency
8e242b3c 1141 jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'),
d7dedf42 1142 method: 'pkg-config', kwargs: static_kwargs)
a0b93237
PB
1143 sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'],
1144 required: get_option('vnc_sasl'),
d7dedf42 1145 kwargs: static_kwargs)
a0b93237
PB
1146 if sasl.found()
1147 sasl = declare_dependency(dependencies: sasl,
1148 compile_args: '-DSTRUCT_IOVEC_DEFINED')
1149 endif
478e943f 1150endif
241611ea 1151
05e391ae
PB
1152pam = not_found
1153if not get_option('auth_pam').auto() or have_system
1154 pam = cc.find_library('pam', has_headers: ['security/pam_appl.h'],
1155 required: get_option('auth_pam'),
1156 kwargs: static_kwargs)
1157endif
1158if pam.found() and not cc.links('''
1159 #include <stddef.h>
1160 #include <security/pam_appl.h>
1161 int main(void) {
1162 const char *service_name = "qemu";
1163 const char *user = "frank";
1164 const struct pam_conv pam_conv = { 0 };
1165 pam_handle_t *pamh = NULL;
1166 pam_start(service_name, user, &pam_conv, &pamh);
1167 return 0;
1168 }''', dependencies: pam)
1169 pam = not_found
1170 if get_option('auth_pam').enabled()
1171 error('could not link libpam')
1172 else
1173 warning('could not link libpam, disabling')
1174 endif
1175endif
1176
708eab42 1177snappy = not_found
241611ea
PB
1178if not get_option('snappy').auto() or have_system
1179 snappy = cc.find_library('snappy', has_headers: ['snappy-c.h'],
1180 required: get_option('snappy'),
d7dedf42 1181 kwargs: static_kwargs)
241611ea 1182endif
565174d0 1183if snappy.found() and not linker.links('''
241611ea
PB
1184 #include <snappy-c.h>
1185 int main(void) { snappy_max_compressed_length(4096); return 0; }''', dependencies: snappy)
1186 snappy = not_found
1187 if get_option('snappy').enabled()
1188 error('could not link libsnappy')
1189 else
1190 warning('could not link libsnappy, disabling')
1191 endif
708eab42 1192endif
0c32a0ae 1193
708eab42 1194lzo = not_found
0c32a0ae
PB
1195if not get_option('lzo').auto() or have_system
1196 lzo = cc.find_library('lzo2', has_headers: ['lzo/lzo1x.h'],
1197 required: get_option('lzo'),
d7dedf42 1198 kwargs: static_kwargs)
0c32a0ae
PB
1199endif
1200if lzo.found() and not cc.links('''
1201 #include <lzo/lzo1x.h>
1202 int main(void) { lzo_version(); return 0; }''', dependencies: lzo)
1203 lzo = not_found
1204 if get_option('lzo').enabled()
1205 error('could not link liblzo2')
1206 else
1207 warning('could not link liblzo2, disabling')
1208 endif
708eab42 1209endif
0c32a0ae 1210
488a8c73
PB
1211numa = not_found
1212if not get_option('numa').auto() or have_system or have_tools
1213 numa = cc.find_library('numa', has_headers: ['numa.h'],
1214 required: get_option('numa'),
1215 kwargs: static_kwargs)
1216endif
1217if numa.found() and not cc.links('''
1218 #include <numa.h>
1219 int main(void) { return numa_available(); }
1220 ''', dependencies: numa)
1221 numa = not_found
1222 if get_option('numa').enabled()
1223 error('could not link numa')
1224 else
1225 warning('could not link numa, disabling')
1226 endif
1227endif
1228
55166230 1229rdma = not_found
3730a734
PB
1230if not get_option('rdma').auto() or have_system
1231 libumad = cc.find_library('ibumad', required: get_option('rdma'))
1232 rdma_libs = [cc.find_library('rdmacm', has_headers: ['rdma/rdma_cma.h'],
1233 required: get_option('rdma'),
1234 kwargs: static_kwargs),
1235 cc.find_library('ibverbs', required: get_option('rdma'),
1236 kwargs: static_kwargs),
1237 libumad]
1238 rdma = declare_dependency(dependencies: rdma_libs)
1239 foreach lib: rdma_libs
1240 if not lib.found()
1241 rdma = not_found
1242 endif
1243 endforeach
55166230 1244endif
3730a734 1245
582ea95f 1246xen = not_found
14efd8d3
PB
1247if get_option('xen').enabled() or (get_option('xen').auto() and have_system)
1248 xencontrol = dependency('xencontrol', required: false,
1249 method: 'pkg-config', kwargs: static_kwargs)
1250 if xencontrol.found()
1251 xen_pc = declare_dependency(version: xencontrol.version(),
1252 dependencies: [
1253 xencontrol,
1254 # disabler: true makes xen_pc.found() return false if any is not found
1255 dependency('xenstore', required: false,
1256 method: 'pkg-config', kwargs: static_kwargs,
1257 disabler: true),
1258 dependency('xenforeignmemory', required: false,
1259 method: 'pkg-config', kwargs: static_kwargs,
1260 disabler: true),
1261 dependency('xengnttab', required: false,
1262 method: 'pkg-config', kwargs: static_kwargs,
1263 disabler: true),
1264 dependency('xenevtchn', required: false,
1265 method: 'pkg-config', kwargs: static_kwargs,
1266 disabler: true),
1267 dependency('xendevicemodel', required: false,
1268 method: 'pkg-config', kwargs: static_kwargs,
1269 disabler: true),
1270 # optional, no "disabler: true"
1271 dependency('xentoolcore', required: false,
1272 method: 'pkg-config', kwargs: static_kwargs)])
1273 if xen_pc.found()
1274 xen = xen_pc
1275 endif
1276 endif
1277 if not xen.found()
1278 xen_tests = [ '4.11.0', '4.10.0', '4.9.0', '4.8.0', '4.7.1', '4.6.0', '4.5.0', '4.2.0' ]
1279 xen_libs = {
1280 '4.11.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn', 'xentoolcore' ],
1281 '4.10.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn', 'xentoolcore' ],
1282 '4.9.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
1283 '4.8.0': [ 'xenstore', 'xenctrl', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
1284 '4.7.1': [ 'xenstore', 'xenctrl', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
1285 '4.6.0': [ 'xenstore', 'xenctrl' ],
1286 '4.5.0': [ 'xenstore', 'xenctrl' ],
1287 '4.2.0': [ 'xenstore', 'xenctrl' ],
1288 }
1289 xen_deps = {}
1290 foreach ver: xen_tests
1291 # cache the various library tests to avoid polluting the logs
1292 xen_test_deps = []
1293 foreach l: xen_libs[ver]
1294 if l not in xen_deps
1295 xen_deps += { l: cc.find_library(l, required: false) }
1296 endif
1297 xen_test_deps += xen_deps[l]
1298 endforeach
1299
1300 # Use -D to pick just one of the test programs in scripts/xen-detect.c
1301 xen_version = ver.split('.')
1302 xen_ctrl_version = xen_version[0] + \
1303 ('0' + xen_version[1]).substring(-2) + \
1304 ('0' + xen_version[2]).substring(-2)
1305 if cc.links(files('scripts/xen-detect.c'),
1306 args: '-DCONFIG_XEN_CTRL_INTERFACE_VERSION=' + xen_ctrl_version,
1307 dependencies: xen_test_deps)
1308 xen = declare_dependency(version: ver, dependencies: xen_test_deps)
1309 break
1310 endif
1311 endforeach
1312 endif
1313 if xen.found()
1314 accelerators += 'CONFIG_XEN'
1315 elif get_option('xen').enabled()
1316 error('could not compile and link Xen test program')
1317 endif
582ea95f 1318endif
14efd8d3
PB
1319have_xen_pci_passthrough = get_option('xen_pci_passthrough') \
1320 .require(xen.found(),
1321 error_message: 'Xen PCI passthrough requested but Xen not enabled') \
1322 .require(targetos == 'linux',
1323 error_message: 'Xen PCI passthrough not available on this platform') \
1324 .allowed()
1325
1326
06677ce1 1327cacard = not_found
5f364c57
PB
1328if not get_option('smartcard').auto() or have_system
1329 cacard = dependency('libcacard', required: get_option('smartcard'),
1330 version: '>=2.5.1', method: 'pkg-config',
1331 kwargs: static_kwargs)
06677ce1 1332endif
0a40bcb7
CB
1333u2f = not_found
1334if have_system
1335 u2f = dependency('u2f-emu', required: get_option('u2f'),
1336 method: 'pkg-config',
d7dedf42 1337 kwargs: static_kwargs)
0a40bcb7 1338endif
06677ce1 1339usbredir = not_found
18f31e60
PB
1340if not get_option('usb_redir').auto() or have_system
1341 usbredir = dependency('libusbredirparser-0.5', required: get_option('usb_redir'),
1342 version: '>=0.6', method: 'pkg-config',
1343 kwargs: static_kwargs)
06677ce1
PB
1344endif
1345libusb = not_found
90540f32
PB
1346if not get_option('libusb').auto() or have_system
1347 libusb = dependency('libusb-1.0', required: get_option('libusb'),
1348 version: '>=1.0.13', method: 'pkg-config',
1349 kwargs: static_kwargs)
06677ce1 1350endif
90540f32 1351
c9322ab5 1352libpmem = not_found
e36e8c70
PB
1353if not get_option('libpmem').auto() or have_system
1354 libpmem = dependency('libpmem', required: get_option('libpmem'),
1355 method: 'pkg-config', kwargs: static_kwargs)
c9322ab5 1356endif
c7c91a74 1357libdaxctl = not_found
83ef1682
PB
1358if not get_option('libdaxctl').auto() or have_system
1359 libdaxctl = dependency('libdaxctl', required: get_option('libdaxctl'),
1360 version: '>=57', method: 'pkg-config',
1361 kwargs: static_kwargs)
c7c91a74 1362endif
8ce0a45f 1363tasn1 = not_found
ba7ed407
PB
1364if gnutls.found()
1365 tasn1 = dependency('libtasn1',
1366 method: 'pkg-config',
1367 kwargs: static_kwargs)
8ce0a45f 1368endif
af04e89d 1369keyutils = dependency('libkeyutils', required: false,
d7dedf42 1370 method: 'pkg-config', kwargs: static_kwargs)
a81df1b6 1371
3909def8
MAL
1372has_gettid = cc.has_function('gettid')
1373
3d212b41
RJ
1374# libselinux
1375selinux = dependency('libselinux',
1376 required: get_option('selinux'),
1377 method: 'pkg-config', kwargs: static_kwargs)
1378
aa087962
PB
1379# Malloc tests
1380
1381malloc = []
1382if get_option('malloc') == 'system'
1383 has_malloc_trim = \
43a363ae 1384 get_option('malloc_trim').allowed() and \
aa087962
PB
1385 cc.links('''#include <malloc.h>
1386 int main(void) { malloc_trim(0); return 0; }''')
1387else
1388 has_malloc_trim = false
1389 malloc = cc.find_library(get_option('malloc'), required: true)
1390endif
1391if not has_malloc_trim and get_option('malloc_trim').enabled()
1392 if get_option('malloc') == 'system'
1393 error('malloc_trim not available on this platform.')
1394 else
1395 error('malloc_trim not available with non-libc memory allocator')
1396 endif
1397endif
1398
84e319a5
HR
1399# Check whether the glibc provides statx()
1400
e66420ac 1401gnu_source_prefix = '''
84e319a5
HR
1402 #ifndef _GNU_SOURCE
1403 #define _GNU_SOURCE
1404 #endif
e66420ac
PB
1405'''
1406statx_test = gnu_source_prefix + '''
84e319a5
HR
1407 #include <sys/stat.h>
1408 int main(void) {
1409 struct statx statxbuf;
1410 statx(0, "", 0, STATX_BASIC_STATS, &statxbuf);
1411 return 0;
1412 }'''
1413
1414has_statx = cc.links(statx_test)
1415
4ce7a08d
HR
1416# Check whether statx() provides mount ID information
1417
1418statx_mnt_id_test = gnu_source_prefix + '''
1419 #include <sys/stat.h>
1420 int main(void) {
1421 struct statx statxbuf;
1422 statx(0, "", 0, STATX_BASIC_STATS | STATX_MNT_ID, &statxbuf);
1423 return statxbuf.stx_mnt_id;
1424 }'''
1425
1426has_statx_mnt_id = cc.links(statx_mnt_id_test)
1427
a436d6d4
PB
1428have_vhost_user_blk_server = get_option('vhost_user_blk_server') \
1429 .require(targetos == 'linux',
1430 error_message: 'vhost_user_blk_server requires linux') \
1431 .require('CONFIG_VHOST_USER' in config_host,
1432 error_message: 'vhost_user_blk_server requires vhost-user support') \
1433 .disable_auto_if(not have_system) \
1434 .allowed()
9e62ba48 1435
df4ea709
HR
1436if get_option('fuse').disabled() and get_option('fuse_lseek').enabled()
1437 error('Cannot enable fuse-lseek while fuse is disabled')
1438endif
1439
a484a719
HR
1440fuse = dependency('fuse3', required: get_option('fuse'),
1441 version: '>=3.1', method: 'pkg-config',
d7dedf42 1442 kwargs: static_kwargs)
a484a719 1443
df4ea709 1444fuse_lseek = not_found
43a363ae 1445if get_option('fuse_lseek').allowed()
df4ea709
HR
1446 if fuse.version().version_compare('>=3.8')
1447 # Dummy dependency
1448 fuse_lseek = declare_dependency()
1449 elif get_option('fuse_lseek').enabled()
1450 if fuse.found()
1451 error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version())
1452 else
1453 error('fuse-lseek requires libfuse, which was not found')
1454 endif
1455 endif
1456endif
1457
46627f41
AM
1458# libbpf
1459libbpf = dependency('libbpf', required: get_option('bpf'), method: 'pkg-config')
1460if libbpf.found() and not cc.links('''
1461 #include <bpf/libbpf.h>
1462 int main(void)
1463 {
1464 bpf_object__destroy_skeleton(NULL);
1465 return 0;
1466 }''', dependencies: libbpf)
1467 libbpf = not_found
1468 if get_option('bpf').enabled()
1469 error('libbpf skeleton test failed')
1470 else
1471 warning('libbpf skeleton test failed, disabling')
1472 endif
1473endif
1474
87430d5b
PB
1475#################
1476# config-host.h #
1477#################
1478
1479audio_drivers_selected = []
1480if have_system
1481 audio_drivers_available = {
1482 'alsa': alsa.found(),
1483 'coreaudio': coreaudio.found(),
1484 'dsound': dsound.found(),
1485 'jack': jack.found(),
1486 'oss': oss.found(),
1487 'pa': pulse.found(),
1488 'sdl': sdl.found(),
1489 }
e5424a29
PB
1490 foreach k, v: audio_drivers_available
1491 config_host_data.set('CONFIG_AUDIO_' + k.to_upper(), v)
1492 endforeach
87430d5b
PB
1493
1494 # Default to native drivers first, OSS second, SDL third
1495 audio_drivers_priority = \
1496 [ 'pa', 'coreaudio', 'dsound', 'oss' ] + \
1497 (targetos == 'linux' ? [] : [ 'sdl' ])
1498 audio_drivers_default = []
1499 foreach k: audio_drivers_priority
1500 if audio_drivers_available[k]
1501 audio_drivers_default += k
1502 endif
1503 endforeach
1504
1505 foreach k: get_option('audio_drv_list')
1506 if k == 'default'
1507 audio_drivers_selected += audio_drivers_default
1508 elif not audio_drivers_available[k]
1509 error('Audio driver "@0@" not available.'.format(k))
1510 else
1511 audio_drivers_selected += k
1512 endif
1513 endforeach
1514endif
87430d5b
PB
1515config_host_data.set('CONFIG_AUDIO_DRIVERS',
1516 '"' + '", "'.join(audio_drivers_selected) + '", ')
1517
9e62ba48
DB
1518if get_option('cfi')
1519 cfi_flags=[]
1520 # Check for dependency on LTO
1521 if not get_option('b_lto')
1522 error('Selected Control-Flow Integrity but LTO is disabled')
1523 endif
1524 if config_host.has_key('CONFIG_MODULES')
1525 error('Selected Control-Flow Integrity is not compatible with modules')
1526 endif
1527 # Check for cfi flags. CFI requires LTO so we can't use
1528 # get_supported_arguments, but need a more complex "compiles" which allows
1529 # custom arguments
1530 if cc.compiles('int main () { return 0; }', name: '-fsanitize=cfi-icall',
1531 args: ['-flto', '-fsanitize=cfi-icall'] )
1532 cfi_flags += '-fsanitize=cfi-icall'
1533 else
1534 error('-fsanitize=cfi-icall is not supported by the compiler')
1535 endif
1536 if cc.compiles('int main () { return 0; }',
1537 name: '-fsanitize-cfi-icall-generalize-pointers',
1538 args: ['-flto', '-fsanitize=cfi-icall',
1539 '-fsanitize-cfi-icall-generalize-pointers'] )
1540 cfi_flags += '-fsanitize-cfi-icall-generalize-pointers'
1541 else
1542 error('-fsanitize-cfi-icall-generalize-pointers is not supported by the compiler')
1543 endif
1544 if get_option('cfi_debug')
1545 if cc.compiles('int main () { return 0; }',
1546 name: '-fno-sanitize-trap=cfi-icall',
1547 args: ['-flto', '-fsanitize=cfi-icall',
1548 '-fno-sanitize-trap=cfi-icall'] )
1549 cfi_flags += '-fno-sanitize-trap=cfi-icall'
1550 else
1551 error('-fno-sanitize-trap=cfi-icall is not supported by the compiler')
1552 endif
1553 endif
5fc0617f
MAL
1554 add_global_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
1555 add_global_link_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
9e62ba48
DB
1556endif
1557
14176c8d
JD
1558have_host_block_device = (targetos != 'darwin' or
1559 cc.has_header('IOKit/storage/IOMedia.h'))
1560
a436d6d4
PB
1561# FIXME enable_modules shouldn't be necessary, but: https://github.com/mesonbuild/meson/issues/8333
1562dbus_display = get_option('dbus_display') \
1563 .require(gio.version().version_compare('>=2.64'),
1564 error_message: '-display dbus requires glib>=2.64') \
1565 .require(enable_modules,
1566 error_message: '-display dbus requires --enable-modules') \
7544060e 1567 .require(gdbus_codegen.found(),
a436d6d4
PB
1568 error_message: '-display dbus requires gdbus-codegen') \
1569 .allowed()
1570
1571have_virtfs = get_option('virtfs') \
0fb1e19d
KF
1572 .require(targetos == 'linux' or targetos == 'darwin',
1573 error_message: 'virtio-9p (virtfs) requires Linux or macOS') \
1574 .require(targetos == 'linux' or cc.has_function('pthread_fchdir_np'),
1575 error_message: 'virtio-9p (virtfs) on macOS requires the presence of pthread_fchdir_np') \
1576 .require(targetos == 'darwin' or (libattr.found() and libcap_ng.found()),
1577 error_message: 'virtio-9p (virtfs) on Linux requires libcap-ng-devel and libattr-devel') \
a436d6d4
PB
1578 .disable_auto_if(not have_tools and not have_system) \
1579 .allowed()
69202b40 1580
0fb1e19d 1581have_virtfs_proxy_helper = targetos != 'darwin' and have_virtfs and have_tools
3a489d38 1582
9c29b741
PB
1583foreach k : get_option('trace_backends')
1584 config_host_data.set('CONFIG_TRACE_' + k.to_upper(), true)
1585endforeach
1586config_host_data.set_quoted('CONFIG_TRACE_FILE', get_option('trace_file'))
5dc4618e
PB
1587if get_option('iasl') != ''
1588 config_host_data.set_quoted('CONFIG_IASL', get_option('iasl'))
1589endif
16bf7a33
PB
1590config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir'))
1591config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix'))
1592config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir)
1593config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir)
1594config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir)
1595config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath'))
1596config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir'))
1597config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir)
1598config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir'))
1599config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
1600config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir)
1601config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
1602
35acbb30
PB
1603have_slirp_smbd = get_option('slirp_smbd') \
1604 .require(targetos != 'windows', error_message: 'Host smbd not supported on this platform.') \
1605 .allowed()
1606if have_slirp_smbd
1607 smbd_path = get_option('smbd')
1608 if smbd_path == ''
1609 smbd_path = (targetos == 'solaris' ? '/usr/sfw/sbin/smbd' : '/usr/sbin/smbd')
1610 endif
1611 config_host_data.set_quoted('CONFIG_SMBD_COMMAND', smbd_path)
1612endif
1613
823eb013
PB
1614config_host_data.set('HOST_' + host_arch.to_upper(), 1)
1615
2cb2f580
PB
1616if get_option('module_upgrades') and not enable_modules
1617 error('Cannot enable module-upgrades as modules are not enabled')
1618endif
1619config_host_data.set('CONFIG_MODULE_UPGRADES', get_option('module_upgrades'))
1620
f7f2d651 1621config_host_data.set('CONFIG_ATTR', libattr.found())
c55cf6ab 1622config_host_data.set('CONFIG_BDRV_WHITELIST_TOOLS', get_option('block_drv_whitelist_in_tools'))
8c6d4ff4 1623config_host_data.set('CONFIG_BRLAPI', brlapi.found())
b4e312e9 1624config_host_data.set('CONFIG_COCOA', cocoa.found())
537b7248 1625config_host_data.set('CONFIG_FUZZ', get_option('fuzzing'))
af2bb99b 1626config_host_data.set('CONFIG_GCOV', get_option('b_coverage'))
f01496a3 1627config_host_data.set('CONFIG_LIBUDEV', libudev.found())
0c32a0ae 1628config_host_data.set('CONFIG_LZO', lzo.found())
6ec0e15d
PB
1629config_host_data.set('CONFIG_MPATH', mpathpersist.found())
1630config_host_data.set('CONFIG_MPATH_NEW_API', mpathpersist_new_api)
f9cd86fe 1631config_host_data.set('CONFIG_CURL', curl.found())
5285e593 1632config_host_data.set('CONFIG_CURSES', curses.found())
8bc5184d 1633config_host_data.set('CONFIG_GBM', gbm.found())
7544060e 1634config_host_data.set('CONFIG_GIO', gio.found())
08821ca2
PB
1635config_host_data.set('CONFIG_GLUSTERFS', glusterfs.found())
1636if glusterfs.found()
1637 config_host_data.set('CONFIG_GLUSTERFS_XLATOR_OPT', glusterfs.version().version_compare('>=4'))
1638 config_host_data.set('CONFIG_GLUSTERFS_DISCARD', glusterfs.version().version_compare('>=5'))
1639 config_host_data.set('CONFIG_GLUSTERFS_FALLOCATE', glusterfs.version().version_compare('>=6'))
1640 config_host_data.set('CONFIG_GLUSTERFS_ZEROFILL', glusterfs.version().version_compare('>=6'))
1641 config_host_data.set('CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT', glusterfs_ftruncate_has_stat)
1642 config_host_data.set('CONFIG_GLUSTERFS_IOCB_HAS_STAT', glusterfs_iocb_has_stat)
1643endif
1b695471 1644config_host_data.set('CONFIG_GTK', gtk.found())
c23d7b4e 1645config_host_data.set('CONFIG_VTE', vte.found())
f7f2d651 1646config_host_data.set('CONFIG_LIBATTR', have_old_libattr)
727c8bb8 1647config_host_data.set('CONFIG_LIBCAP_NG', libcap_ng.found())
46627f41 1648config_host_data.set('CONFIG_EBPF', libbpf.found())
63a7f853 1649config_host_data.set('CONFIG_LIBDAXCTL', libdaxctl.found())
9db405a3 1650config_host_data.set('CONFIG_LIBISCSI', libiscsi.found())
30045c05 1651config_host_data.set('CONFIG_LIBNFS', libnfs.found())
e6a52b36 1652config_host_data.set('CONFIG_LIBSSH', libssh.found())
ff66f3e5 1653config_host_data.set('CONFIG_LINUX_AIO', libaio.found())
63a7f853
PB
1654config_host_data.set('CONFIG_LINUX_IO_URING', linux_io_uring.found())
1655config_host_data.set('CONFIG_LIBPMEM', libpmem.found())
488a8c73 1656config_host_data.set('CONFIG_NUMA', numa.found())
88b6e618 1657config_host_data.set('CONFIG_OPENGL', opengl.found())
c55cf6ab 1658config_host_data.set('CONFIG_PROFILER', get_option('profiler'))
fabd1e93 1659config_host_data.set('CONFIG_RBD', rbd.found())
3730a734 1660config_host_data.set('CONFIG_RDMA', rdma.found())
35be72ba
PB
1661config_host_data.set('CONFIG_SDL', sdl.found())
1662config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found())
90835c2b 1663config_host_data.set('CONFIG_SECCOMP', seccomp.found())
241611ea 1664config_host_data.set('CONFIG_SNAPPY', snappy.found())
0d04c4c9 1665config_host_data.set('CONFIG_TPM', have_tpm)
90540f32 1666config_host_data.set('CONFIG_USB_LIBUSB', libusb.found())
e1723999 1667config_host_data.set('CONFIG_VDE', vde.found())
e5e856c1 1668config_host_data.set('CONFIG_VHOST_USER_BLK_SERVER', have_vhost_user_blk_server)
95f8510e 1669config_host_data.set('CONFIG_PNG', png.found())
a0b93237
PB
1670config_host_data.set('CONFIG_VNC', vnc.found())
1671config_host_data.set('CONFIG_VNC_JPEG', jpeg.found())
a0b93237 1672config_host_data.set('CONFIG_VNC_SASL', sasl.found())
69202b40 1673config_host_data.set('CONFIG_VIRTFS', have_virtfs)
63a7f853 1674config_host_data.set('CONFIG_VTE', vte.found())
4113f4cf 1675config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found())
af04e89d 1676config_host_data.set('CONFIG_KEYUTILS', keyutils.found())
3909def8 1677config_host_data.set('CONFIG_GETTID', has_gettid)
57612511 1678config_host_data.set('CONFIG_GNUTLS', gnutls.found())
cc4c7c73 1679config_host_data.set('CONFIG_GNUTLS_CRYPTO', gnutls_crypto.found())
57612511
PB
1680config_host_data.set('CONFIG_GCRYPT', gcrypt.found())
1681config_host_data.set('CONFIG_NETTLE', nettle.found())
1682config_host_data.set('CONFIG_QEMU_PRIVATE_XTS', xts == 'private')
aa087962 1683config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim)
84e319a5 1684config_host_data.set('CONFIG_STATX', has_statx)
4ce7a08d 1685config_host_data.set('CONFIG_STATX_MNT_ID', has_statx_mnt_id)
b1def33d 1686config_host_data.set('CONFIG_ZSTD', zstd.found())
a484a719 1687config_host_data.set('CONFIG_FUSE', fuse.found())
df4ea709 1688config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
3f0a5d55 1689config_host_data.set('CONFIG_SPICE_PROTOCOL', spice_protocol.found())
ddece465
MAL
1690if spice_protocol.found()
1691config_host_data.set('CONFIG_SPICE_PROTOCOL_MAJOR', spice_protocol.version().split('.')[0])
1692config_host_data.set('CONFIG_SPICE_PROTOCOL_MINOR', spice_protocol.version().split('.')[1])
1693config_host_data.set('CONFIG_SPICE_PROTOCOL_MICRO', spice_protocol.version().split('.')[2])
1694endif
3f0a5d55 1695config_host_data.set('CONFIG_SPICE', spice.found())
9d71037f 1696config_host_data.set('CONFIG_X11', x11.found())
142ca628 1697config_host_data.set('CONFIG_DBUS_DISPLAY', dbus_display)
9e62ba48 1698config_host_data.set('CONFIG_CFI', get_option('cfi'))
3d212b41 1699config_host_data.set('CONFIG_SELINUX', selinux.found())
14efd8d3
PB
1700config_host_data.set('CONFIG_XEN_BACKEND', xen.found())
1701if xen.found()
1702 # protect from xen.version() having less than three components
1703 xen_version = xen.version().split('.') + ['0', '0']
1704 xen_ctrl_version = xen_version[0] + \
1705 ('0' + xen_version[1]).substring(-2) + \
1706 ('0' + xen_version[2]).substring(-2)
1707 config_host_data.set('CONFIG_XEN_CTRL_INTERFACE_VERSION', xen_ctrl_version)
1708endif
859aef02
PB
1709config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version()))
1710config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0])
1711config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1])
1712config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2])
1713
a6305081 1714config_host_data.set_quoted('CONFIG_HOST_DSOSUF', host_dsosuf)
69d8de7a
PB
1715config_host_data.set('HAVE_HOST_BLOCK_DEVICE', have_host_block_device)
1716
728c0a2f
PB
1717have_coroutine_pool = get_option('coroutine_pool')
1718if get_option('debug_stack_usage') and have_coroutine_pool
1719 message('Disabling coroutine pool to measure stack usage')
1720 have_coroutine_pool = false
1721endif
1722config_host_data.set10('CONFIG_COROUTINE_POOL', have_coroutine_pool)
c55cf6ab 1723config_host_data.set('CONFIG_DEBUG_MUTEX', get_option('debug_mutex'))
728c0a2f 1724config_host_data.set('CONFIG_DEBUG_STACK_USAGE', get_option('debug_stack_usage'))
c55cf6ab 1725config_host_data.set('CONFIG_GPROF', get_option('gprof'))
406523f6 1726config_host_data.set('CONFIG_LIVE_BLOCK_MIGRATION', get_option('live_block_migration').allowed())
c55cf6ab 1727config_host_data.set('CONFIG_QOM_CAST_DEBUG', get_option('qom_cast_debug'))
406523f6
PB
1728config_host_data.set('CONFIG_REPLICATION', get_option('live_block_migration').allowed())
1729
69d8de7a 1730# has_header
e66420ac 1731config_host_data.set('CONFIG_EPOLL', cc.has_header('sys/epoll.h'))
d47a8b3b
PB
1732config_host_data.set('CONFIG_LINUX_MAGIC_H', cc.has_header('linux/magic.h'))
1733config_host_data.set('CONFIG_VALGRIND_H', cc.has_header('valgrind/valgrind.h'))
48f670ec 1734config_host_data.set('HAVE_BTRFS_H', cc.has_header('linux/btrfs.h'))
2964be52 1735config_host_data.set('HAVE_DRM_H', cc.has_header('libdrm/drm.h'))
2802d91d 1736config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h'))
69d8de7a 1737config_host_data.set('HAVE_SYS_DISK_H', cc.has_header('sys/disk.h'))
ded5d78c 1738config_host_data.set('HAVE_SYS_IOCCOM_H', cc.has_header('sys/ioccom.h'))
4a9d5f89 1739config_host_data.set('HAVE_SYS_KCOV_H', cc.has_header('sys/kcov.h'))
ded5d78c 1740
69d8de7a 1741# has_function
a620fbe9 1742config_host_data.set('CONFIG_ACCEPT4', cc.has_function('accept4'))
e66420ac
PB
1743config_host_data.set('CONFIG_CLOCK_ADJTIME', cc.has_function('clock_adjtime'))
1744config_host_data.set('CONFIG_DUP3', cc.has_function('dup3'))
1745config_host_data.set('CONFIG_FALLOCATE', cc.has_function('fallocate'))
1746config_host_data.set('CONFIG_POSIX_FALLOCATE', cc.has_function('posix_fallocate'))
8698343b
PM
1747# Note that we need to specify prefix: here to avoid incorrectly
1748# thinking that Windows has posix_memalign()
1749config_host_data.set('CONFIG_POSIX_MEMALIGN', cc.has_function('posix_memalign', prefix: '#include <stdlib.h>'))
5c8c714a 1750config_host_data.set('CONFIG_ALIGNED_MALLOC', cc.has_function('_aligned_malloc'))
88454f84
PM
1751config_host_data.set('CONFIG_VALLOC', cc.has_function('valloc'))
1752config_host_data.set('CONFIG_MEMALIGN', cc.has_function('memalign'))
e66420ac 1753config_host_data.set('CONFIG_PPOLL', cc.has_function('ppoll'))
2b9f74ef 1754config_host_data.set('CONFIG_PREADV', cc.has_function('preadv', prefix: '#include <sys/uio.h>'))
029ed1bd 1755config_host_data.set('CONFIG_PTHREAD_FCHDIR_NP', cc.has_function('pthread_fchdir_np'))
e66420ac
PB
1756config_host_data.set('CONFIG_SENDFILE', cc.has_function('sendfile'))
1757config_host_data.set('CONFIG_SETNS', cc.has_function('setns') and cc.has_function('unshare'))
1758config_host_data.set('CONFIG_SYNCFS', cc.has_function('syncfs'))
1759config_host_data.set('CONFIG_SYNC_FILE_RANGE', cc.has_function('sync_file_range'))
1760config_host_data.set('CONFIG_TIMERFD', cc.has_function('timerfd_create'))
be7e89f6 1761config_host_data.set('HAVE_COPY_FILE_RANGE', cc.has_function('copy_file_range'))
59e35c7b 1762config_host_data.set('HAVE_GETIFADDRS', cc.has_function('getifaddrs'))
e66420ac 1763config_host_data.set('HAVE_OPENPTY', cc.has_function('openpty', dependencies: util))
ed3b3f17 1764config_host_data.set('HAVE_STRCHRNUL', cc.has_function('strchrnul'))
69d8de7a 1765config_host_data.set('HAVE_SYSTEM_FUNCTION', cc.has_function('system', prefix: '#include <stdlib.h>'))
911965ac
LZ
1766if rdma.found()
1767 config_host_data.set('HAVE_IBV_ADVISE_MR',
1768 cc.has_function('ibv_advise_mr',
3730a734 1769 dependencies: rdma,
911965ac
LZ
1770 prefix: '#include <infiniband/verbs.h>'))
1771endif
2b9f74ef 1772
e66420ac
PB
1773# has_header_symbol
1774config_host_data.set('CONFIG_BYTESWAP_H',
1775 cc.has_header_symbol('byteswap.h', 'bswap_32'))
1776config_host_data.set('CONFIG_EPOLL_CREATE1',
1777 cc.has_header_symbol('sys/epoll.h', 'epoll_create1'))
1778config_host_data.set('CONFIG_FALLOCATE_PUNCH_HOLE',
1779 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_PUNCH_HOLE') and
1780 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_KEEP_SIZE'))
1781config_host_data.set('CONFIG_FALLOCATE_ZERO_RANGE',
1782 cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_ZERO_RANGE'))
1783config_host_data.set('CONFIG_FIEMAP',
1784 cc.has_header('linux/fiemap.h') and
1785 cc.has_header_symbol('linux/fs.h', 'FS_IOC_FIEMAP'))
be7e89f6
PB
1786config_host_data.set('CONFIG_GETRANDOM',
1787 cc.has_function('getrandom') and
1788 cc.has_header_symbol('sys/random.h', 'GRND_NONBLOCK'))
a620fbe9
PB
1789config_host_data.set('CONFIG_INOTIFY',
1790 cc.has_header_symbol('sys/inotify.h', 'inotify_init'))
1791config_host_data.set('CONFIG_INOTIFY1',
1792 cc.has_header_symbol('sys/inotify.h', 'inotify_init1'))
e66420ac
PB
1793config_host_data.set('CONFIG_MACHINE_BSWAP_H',
1794 cc.has_header_symbol('machine/bswap.h', 'bswap32',
1795 prefix: '''#include <sys/endian.h>
1796 #include <sys/types.h>'''))
1797config_host_data.set('CONFIG_PRCTL_PR_SET_TIMERSLACK',
1798 cc.has_header_symbol('sys/prctl.h', 'PR_SET_TIMERSLACK'))
be7e89f6
PB
1799config_host_data.set('CONFIG_RTNETLINK',
1800 cc.has_header_symbol('linux/rtnetlink.h', 'IFLA_PROTO_DOWN'))
1801config_host_data.set('CONFIG_SYSMACROS',
1802 cc.has_header_symbol('sys/sysmacros.h', 'makedev'))
e1fbd2c4
PB
1803config_host_data.set('HAVE_OPTRESET',
1804 cc.has_header_symbol('getopt.h', 'optreset'))
653163fc
MAL
1805config_host_data.set('HAVE_IPPROTO_MPTCP',
1806 cc.has_header_symbol('netinet/in.h', 'IPPROTO_MPTCP'))
e66420ac
PB
1807
1808# has_member
1809config_host_data.set('HAVE_SIGEV_NOTIFY_THREAD_ID',
1810 cc.has_member('struct sigevent', 'sigev_notify_thread_id',
1811 prefix: '#include <signal.h>'))
ed3b3f17
PB
1812config_host_data.set('HAVE_STRUCT_STAT_ST_ATIM',
1813 cc.has_member('struct stat', 'st_atim',
1814 prefix: '#include <sys/stat.h>'))
e66420ac 1815
6a23f819
PB
1816# has_type
1817config_host_data.set('CONFIG_IOVEC',
1818 cc.has_type('struct iovec',
1819 prefix: '#include <sys/uio.h>'))
1820config_host_data.set('HAVE_UTMPX',
1821 cc.has_type('struct utmpx',
1822 prefix: '#include <utmpx.h>'))
1823
904ad5ec 1824config_host_data.set('CONFIG_EVENTFD', cc.links('''
e1fbd2c4
PB
1825 #include <sys/eventfd.h>
1826 int main(void) { return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); }'''))
904ad5ec 1827config_host_data.set('CONFIG_FDATASYNC', cc.links(gnu_source_prefix + '''
e1fbd2c4
PB
1828 #include <unistd.h>
1829 int main(void) {
1830 #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
1831 return fdatasync(0);
1832 #else
1833 #error Not supported
1834 #endif
1835 }'''))
8900c204
AD
1836
1837has_madvise = cc.links(gnu_source_prefix + '''
e1fbd2c4
PB
1838 #include <sys/types.h>
1839 #include <sys/mman.h>
1840 #include <stddef.h>
8900c204
AD
1841 int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }''')
1842missing_madvise_proto = false
1843if has_madvise
1844 # Some platforms (illumos and Solaris before Solaris 11) provide madvise()
1845 # but forget to prototype it. In this case, has_madvise will be true (the
1846 # test program links despite a compile warning). To detect the
1847 # missing-prototype case, we try again with a definitely-bogus prototype.
1848 # This will only compile if the system headers don't provide the prototype;
1849 # otherwise the conflicting prototypes will cause a compiler error.
1850 missing_madvise_proto = cc.links(gnu_source_prefix + '''
1851 #include <sys/types.h>
1852 #include <sys/mman.h>
1853 #include <stddef.h>
1854 extern int madvise(int);
1855 int main(void) { return madvise(0); }''')
1856endif
1857config_host_data.set('CONFIG_MADVISE', has_madvise)
1858config_host_data.set('HAVE_MADVISE_WITHOUT_PROTOTYPE', missing_madvise_proto)
1859
904ad5ec 1860config_host_data.set('CONFIG_MEMFD', cc.links(gnu_source_prefix + '''
e1fbd2c4
PB
1861 #include <sys/mman.h>
1862 int main(void) { return memfd_create("foo", MFD_ALLOW_SEALING); }'''))
904ad5ec 1863config_host_data.set('CONFIG_OPEN_BY_HANDLE', cc.links(gnu_source_prefix + '''
d47a8b3b
PB
1864 #include <fcntl.h>
1865 #if !defined(AT_EMPTY_PATH)
1866 # error missing definition
1867 #else
1868 int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
1869 #endif'''))
904ad5ec 1870config_host_data.set('CONFIG_PIPE2', cc.links(gnu_source_prefix + '''
a620fbe9
PB
1871 #include <unistd.h>
1872 #include <fcntl.h>
1873
1874 int main(void)
1875 {
1876 int pipefd[2];
1877 return pipe2(pipefd, O_CLOEXEC);
1878 }'''))
904ad5ec 1879config_host_data.set('CONFIG_POSIX_MADVISE', cc.links(gnu_source_prefix + '''
e1fbd2c4
PB
1880 #include <sys/mman.h>
1881 #include <stddef.h>
1882 int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }'''))
10f6b231 1883
6a23f819 1884config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_W_TID', cc.links(gnu_source_prefix + '''
10f6b231
PB
1885 #include <pthread.h>
1886
1887 static void *f(void *p) { return NULL; }
1888 int main(void)
1889 {
1890 pthread_t thread;
1891 pthread_create(&thread, 0, f, 0);
1892 pthread_setname_np(thread, "QEMU");
1893 return 0;
1894 }''', dependencies: threads))
6a23f819 1895config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_WO_TID', cc.links(gnu_source_prefix + '''
10f6b231
PB
1896 #include <pthread.h>
1897
1898 static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; }
1899 int main(void)
1900 {
1901 pthread_t thread;
1902 pthread_create(&thread, 0, f, 0);
1903 return 0;
1904 }''', dependencies: threads))
657ac98b
LM
1905config_host_data.set('CONFIG_PTHREAD_CONDATTR_SETCLOCK', cc.links(gnu_source_prefix + '''
1906 #include <pthread.h>
1907 #include <time.h>
1908
1909 int main(void)
1910 {
1911 pthread_condattr_t attr
1912 pthread_condattr_init(&attr);
1913 pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
1914 return 0;
1915 }''', dependencies: threads))
10f6b231 1916
904ad5ec 1917config_host_data.set('CONFIG_SIGNALFD', cc.links(gnu_source_prefix + '''
6bd17dcc
KS
1918 #include <sys/signalfd.h>
1919 #include <stddef.h>
1920 int main(void) { return signalfd(-1, NULL, SFD_CLOEXEC); }'''))
904ad5ec 1921config_host_data.set('CONFIG_SPLICE', cc.links(gnu_source_prefix + '''
a620fbe9
PB
1922 #include <unistd.h>
1923 #include <fcntl.h>
1924 #include <limits.h>
1925
1926 int main(void)
1927 {
1928 int len, fd = 0;
1929 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1930 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1931 return 0;
1932 }'''))
e1fbd2c4 1933
96a63aeb
PB
1934config_host_data.set('HAVE_MLOCKALL', cc.links(gnu_source_prefix + '''
1935 #include <sys/mman.h>
1936 int main(int argc, char *argv[]) {
1937 return mlockall(MCL_FUTURE);
1938 }'''))
1939
eea9453a 1940have_l2tpv3 = false
43a363ae 1941if get_option('l2tpv3').allowed() and have_system
6a23f819
PB
1942 have_l2tpv3 = cc.has_type('struct mmsghdr',
1943 prefix: gnu_source_prefix + '''
1944 #include <sys/socket.h>
1945 #include <linux/ip.h>''')
eea9453a
TH
1946endif
1947config_host_data.set('CONFIG_L2TPV3', have_l2tpv3)
1948
837b84b1 1949have_netmap = false
43a363ae 1950if get_option('netmap').allowed() and have_system
837b84b1
PB
1951 have_netmap = cc.compiles('''
1952 #include <inttypes.h>
1953 #include <net/if.h>
1954 #include <net/netmap.h>
1955 #include <net/netmap_user.h>
1956 #if (NETMAP_API < 11) || (NETMAP_API > 15)
1957 #error
1958 #endif
1959 int main(void) { return 0; }''')
1960 if not have_netmap and get_option('netmap').enabled()
1961 error('Netmap headers not available')
1962 endif
1963endif
1964config_host_data.set('CONFIG_NETMAP', have_netmap)
1965
96a63aeb
PB
1966# Work around a system header bug with some kernel/XFS header
1967# versions where they both try to define 'struct fsxattr':
1968# xfs headers will not try to redefine structs from linux headers
1969# if this macro is set.
1970config_host_data.set('HAVE_FSXATTR', cc.links('''
6a23f819 1971 #include <linux/fs.h>
96a63aeb
PB
1972 struct fsxattr foo;
1973 int main(void) {
1974 return 0;
1975 }'''))
1976
e46bd55d
PB
1977# Some versions of Mac OS X incorrectly define SIZE_MAX
1978config_host_data.set('HAVE_BROKEN_SIZE_MAX', not cc.compiles('''
1979 #include <stdint.h>
1980 #include <stdio.h>
1981 int main(int argc, char *argv[]) {
1982 return printf("%zu", SIZE_MAX);
1983 }''', args: ['-Werror']))
1984
d2958fb0 1985atomic_test = '''
bd87a367
PB
1986 #include <stdint.h>
1987 int main(void)
1988 {
d2958fb0 1989 @0@ x = 0, y = 0;
bd87a367
PB
1990 y = __atomic_load_n(&x, __ATOMIC_RELAXED);
1991 __atomic_store_n(&x, y, __ATOMIC_RELAXED);
1992 __atomic_compare_exchange_n(&x, &y, x, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED);
1993 __atomic_exchange_n(&x, y, __ATOMIC_RELAXED);
1994 __atomic_fetch_add(&x, y, __ATOMIC_RELAXED);
1995 return 0;
d2958fb0
MAL
1996 }'''
1997
1998# See if 64-bit atomic operations are supported.
1999# Note that without __atomic builtins, we can only
2000# assume atomic loads/stores max at pointer size.
2001config_host_data.set('CONFIG_ATOMIC64', cc.links(atomic_test.format('uint64_t')))
bd87a367 2002
848126d1
MAL
2003has_int128 = cc.links('''
2004 __int128_t a;
2005 __uint128_t b;
2006 int main (void) {
2007 a = a + b;
2008 b = a * b;
2009 a = a * a;
2010 return 0;
2011 }''')
2012
2013config_host_data.set('CONFIG_INT128', has_int128)
2014
2015if has_int128
d2958fb0
MAL
2016 # "do we have 128-bit atomics which are handled inline and specifically not
2017 # via libatomic". The reason we can't use libatomic is documented in the
2018 # comment starting "GCC is a house divided" in include/qemu/atomic128.h.
2019 has_atomic128 = cc.links(atomic_test.format('unsigned __int128'))
848126d1
MAL
2020
2021 config_host_data.set('CONFIG_ATOMIC128', has_atomic128)
2022
2023 if not has_atomic128
2024 has_cmpxchg128 = cc.links('''
2025 int main(void)
2026 {
2027 unsigned __int128 x = 0, y = 0;
2028 __sync_val_compare_and_swap_16(&x, y, x);
2029 return 0;
2030 }
2031 ''')
2032
2033 config_host_data.set('CONFIG_CMPXCHG128', has_cmpxchg128)
2034 endif
2035endif
bd87a367
PB
2036
2037config_host_data.set('CONFIG_GETAUXVAL', cc.links(gnu_source_prefix + '''
2038 #include <sys/auxv.h>
2039 int main(void) {
2040 return getauxval(AT_HWCAP) == 0;
2041 }'''))
2042
0dae95d4
PB
2043config_host_data.set('CONFIG_USBFS', have_linux_user and cc.compiles('''
2044 #include <linux/usbdevice_fs.h>
2045
2046 #ifndef USBDEVFS_GET_CAPABILITIES
2047 #error "USBDEVFS_GET_CAPABILITIES undefined"
2048 #endif
2049
2050 #ifndef USBDEVFS_DISCONNECT_CLAIM
2051 #error "USBDEVFS_DISCONNECT_CLAIM undefined"
2052 #endif
2053
2054 int main(void) { return 0; }'''))
2055
2edd2c04
PB
2056have_keyring = get_option('keyring') \
2057 .require(targetos == 'linux', error_message: 'keyring is only available on Linux') \
2058 .require(cc.compiles('''
2059 #include <errno.h>
2060 #include <asm/unistd.h>
2061 #include <linux/keyctl.h>
2062 #include <sys/syscall.h>
2063 #include <unistd.h>
2064 int main(void) {
2065 return syscall(__NR_keyctl, KEYCTL_READ, 0, NULL, NULL, 0);
2066 }'''), error_message: 'keyctl syscall not available on this system').allowed()
2067config_host_data.set('CONFIG_SECRET_KEYRING', have_keyring)
2068
622753d2
PB
2069have_cpuid_h = cc.links('''
2070 #include <cpuid.h>
2071 int main(void) {
2072 unsigned a, b, c, d;
2073 unsigned max = __get_cpuid_max(0, 0);
2074
2075 if (max >= 1) {
2076 __cpuid(1, a, b, c, d);
2077 }
2078
2079 if (max >= 7) {
2080 __cpuid_count(7, 0, a, b, c, d);
2081 }
2082
2083 return 0;
2084 }''')
2085config_host_data.set('CONFIG_CPUID_H', have_cpuid_h)
2086
2087config_host_data.set('CONFIG_AVX2_OPT', get_option('avx2') \
2088 .require(have_cpuid_h, error_message: 'cpuid.h not available, cannot enable AVX2') \
2089 .require(cc.links('''
2090 #pragma GCC push_options
2091 #pragma GCC target("avx2")
2092 #include <cpuid.h>
2093 #include <immintrin.h>
2094 static int bar(void *a) {
2095 __m256i x = *(__m256i *)a;
2096 return _mm256_testz_si256(x, x);
2097 }
2098 int main(int argc, char *argv[]) { return bar(argv[0]); }
2099 '''), error_message: 'AVX2 not available').allowed())
2100
2101config_host_data.set('CONFIG_AVX512F_OPT', get_option('avx512f') \
2102 .require(have_cpuid_h, error_message: 'cpuid.h not available, cannot enable AVX512F') \
2103 .require(cc.links('''
2104 #pragma GCC push_options
2105 #pragma GCC target("avx512f")
2106 #include <cpuid.h>
2107 #include <immintrin.h>
2108 static int bar(void *a) {
2109 __m512i x = *(__m512i *)a;
2110 return _mm512_test_epi64_mask(x, x);
2111 }
2112 int main(int argc, char *argv[]) { return bar(argv[0]); }
2113 '''), error_message: 'AVX512F not available').allowed())
2114
3730a734
PB
2115have_pvrdma = get_option('pvrdma') \
2116 .require(rdma.found(), error_message: 'PVRDMA requires OpenFabrics libraries') \
2117 .require(cc.compiles('''
2118 int main(void)
2119 {
2120 char buf = 0;
2121 void *addr = &buf;
2122 addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED);
2123
2124 return 0;
2125 }'''), error_message: 'PVRDMA requires mremap').allowed()
2126
2127if have_pvrdma
2128 config_host_data.set('LEGACY_RDMA_REG_MR', not cc.compiles('''
2129 #include <infiniband/verbs.h>
2130 int main(void)
2131 {
2132 struct ibv_mr *mr;
2133 struct ibv_pd *pd = NULL;
2134 size_t length = 10;
2135 uint64_t iova = 0;
2136 int access = 0;
2137 void *addr = NULL;
2138
2139 mr = ibv_reg_mr_iova(pd, addr, length, iova, access);
2140 ibv_dereg_mr(mr);
2141 return 0;
2142 }'''))
2143endif
2144
b87df904
PB
2145if get_option('membarrier').disabled()
2146 have_membarrier = false
2147elif targetos == 'windows'
2148 have_membarrier = true
2149elif targetos == 'linux'
2150 have_membarrier = cc.compiles('''
2151 #include <linux/membarrier.h>
2152 #include <sys/syscall.h>
2153 #include <unistd.h>
2154 #include <stdlib.h>
2155 int main(void) {
2156 syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0);
2157 syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0);
2158 exit(0);
2159 }''')
2160endif
2161config_host_data.set('CONFIG_MEMBARRIER', get_option('membarrier') \
2162 .require(have_membarrier, error_message: 'membarrier system call not available') \
2163 .allowed())
2164
34b52615
PB
2165have_afalg = get_option('crypto_afalg') \
2166 .require(cc.compiles(gnu_source_prefix + '''
2167 #include <errno.h>
2168 #include <sys/types.h>
2169 #include <sys/socket.h>
2170 #include <linux/if_alg.h>
2171 int main(void) {
2172 int sock;
2173 sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
2174 return sock;
2175 }
2176 '''), error_message: 'AF_ALG requested but could not be detected').allowed()
2177config_host_data.set('CONFIG_AF_ALG', have_afalg)
2178
9d734b85
MAL
2179config_host_data.set('CONFIG_AF_VSOCK', cc.has_header_symbol(
2180 'linux/vm_sockets.h', 'AF_VSOCK',
2181 prefix: '#include <sys/socket.h>',
2182))
bd87a367 2183
8821a389 2184have_vss = false
872b69e6 2185have_vss_sdk = false # old xp/2003 SDK
8821a389
MAL
2186if targetos == 'windows' and link_language == 'cpp'
2187 have_vss = cxx.compiles('''
2188 #define __MIDL_user_allocate_free_DEFINED__
32478cb6 2189 #include <vss.h>
8821a389 2190 int main(void) { return VSS_CTX_BACKUP; }''')
872b69e6 2191 have_vss_sdk = cxx.has_header('vscoordint.h')
8821a389 2192endif
872b69e6 2193config_host_data.set('HAVE_VSS_SDK', have_vss_sdk)
8821a389 2194
a76a1f6b
PB
2195ignored = ['CONFIG_QEMU_INTERP_PREFIX', # actually per-target
2196 'HAVE_GDB_BIN']
87430d5b 2197arrays = ['CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST']
859aef02 2198foreach k, v: config_host
765686d6
PB
2199 if ignored.contains(k)
2200 # do nothing
2201 elif arrays.contains(k)
859aef02
PB
2202 if v != ''
2203 v = '"' + '", "'.join(v.split()) + '", '
2204 endif
2205 config_host_data.set(k, v)
96a63aeb 2206 elif k.startswith('CONFIG_')
859aef02
PB
2207 config_host_data.set(k, v == 'y' ? 1 : v)
2208 endif
2209endforeach
859aef02 2210
6391c772
RH
2211# Older versions of MinGW do not import _lock_file and _unlock_file properly.
2212# This was fixed for v6.0.0 with commit b48e3ac8969d.
2213if targetos == 'windows'
2214 config_host_data.set('HAVE__LOCK_FILE', cc.links('''
2215 #include <stdio.h>
2216 int main(void) {
2217 _lock_file(NULL);
2218 _unlock_file(NULL);
2219 return 0;
2220 }''', name: '_lock_file and _unlock_file'))
2221endif
2222
a0c9162c
PB
2223########################
2224# Target configuration #
2225########################
2226
2becc36a 2227minikconf = find_program('scripts/minikconf.py')
05512f55 2228config_all = {}
a98006bc 2229config_all_devices = {}
ca0fc784 2230config_all_disas = {}
2becc36a
PB
2231config_devices_mak_list = []
2232config_devices_h = {}
859aef02 2233config_target_h = {}
2becc36a 2234config_target_mak = {}
ca0fc784
PB
2235
2236disassemblers = {
2237 'alpha' : ['CONFIG_ALPHA_DIS'],
2238 'arm' : ['CONFIG_ARM_DIS'],
2239 'avr' : ['CONFIG_AVR_DIS'],
2240 'cris' : ['CONFIG_CRIS_DIS'],
3e7a84ee 2241 'hexagon' : ['CONFIG_HEXAGON_DIS'],
ca0fc784
PB
2242 'hppa' : ['CONFIG_HPPA_DIS'],
2243 'i386' : ['CONFIG_I386_DIS'],
2244 'x86_64' : ['CONFIG_I386_DIS'],
ca0fc784
PB
2245 'm68k' : ['CONFIG_M68K_DIS'],
2246 'microblaze' : ['CONFIG_MICROBLAZE_DIS'],
2247 'mips' : ['CONFIG_MIPS_DIS'],
ca0fc784
PB
2248 'nios2' : ['CONFIG_NIOS2_DIS'],
2249 'or1k' : ['CONFIG_OPENRISC_DIS'],
2250 'ppc' : ['CONFIG_PPC_DIS'],
2251 'riscv' : ['CONFIG_RISCV_DIS'],
2252 'rx' : ['CONFIG_RX_DIS'],
2253 's390' : ['CONFIG_S390_DIS'],
2254 'sh4' : ['CONFIG_SH4_DIS'],
2255 'sparc' : ['CONFIG_SPARC_DIS'],
2256 'xtensa' : ['CONFIG_XTENSA_DIS'],
2257}
2258if link_language == 'cpp'
2259 disassemblers += {
2260 'aarch64' : [ 'CONFIG_ARM_A64_DIS'],
2261 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'],
2262 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'],
2263 }
2264endif
2265
e1fbd2c4 2266have_ivshmem = config_host_data.get('CONFIG_EVENTFD')
0a189110 2267host_kconfig = \
537b7248 2268 (get_option('fuzzing') ? ['CONFIG_FUZZ=y'] : []) + \
0d04c4c9 2269 (have_tpm ? ['CONFIG_TPM=y'] : []) + \
3f0a5d55 2270 (spice.found() ? ['CONFIG_SPICE=y'] : []) + \
ccd250aa 2271 (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \
88b6e618 2272 (opengl.found() ? ['CONFIG_OPENGL=y'] : []) + \
9d71037f 2273 (x11.found() ? ['CONFIG_X11=y'] : []) + \
0a189110
PB
2274 ('CONFIG_VHOST_USER' in config_host ? ['CONFIG_VHOST_USER=y'] : []) + \
2275 ('CONFIG_VHOST_VDPA' in config_host ? ['CONFIG_VHOST_VDPA=y'] : []) + \
2276 ('CONFIG_VHOST_KERNEL' in config_host ? ['CONFIG_VHOST_KERNEL=y'] : []) + \
69202b40 2277 (have_virtfs ? ['CONFIG_VIRTFS=y'] : []) + \
0a189110 2278 ('CONFIG_LINUX' in config_host ? ['CONFIG_LINUX=y'] : []) + \
3730a734 2279 (have_pvrdma ? ['CONFIG_PVRDMA=y'] : []) + \
106ad1f9 2280 (multiprocess_allowed ? ['CONFIG_MULTIPROCESS_ALLOWED=y'] : [])
0a189110 2281
a9a74907 2282ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ]
05512f55 2283
fdb75aef
PB
2284default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host
2285actual_target_dirs = []
fbb4121d 2286fdt_required = []
a81df1b6 2287foreach target : target_dirs
765686d6
PB
2288 config_target = { 'TARGET_NAME': target.split('-')[0] }
2289 if target.endswith('linux-user')
fdb75aef
PB
2290 if targetos != 'linux'
2291 if default_targets
2292 continue
2293 endif
2294 error('Target @0@ is only available on a Linux host'.format(target))
2295 endif
765686d6
PB
2296 config_target += { 'CONFIG_LINUX_USER': 'y' }
2297 elif target.endswith('bsd-user')
fdb75aef
PB
2298 if 'CONFIG_BSD' not in config_host
2299 if default_targets
2300 continue
2301 endif
2302 error('Target @0@ is only available on a BSD host'.format(target))
2303 endif
765686d6
PB
2304 config_target += { 'CONFIG_BSD_USER': 'y' }
2305 elif target.endswith('softmmu')
2306 config_target += { 'CONFIG_SOFTMMU': 'y' }
2307 endif
2308 if target.endswith('-user')
2309 config_target += {
2310 'CONFIG_USER_ONLY': 'y',
2311 'CONFIG_QEMU_INTERP_PREFIX':
2312 config_host['CONFIG_QEMU_INTERP_PREFIX'].format(config_target['TARGET_NAME'])
2313 }
2314 endif
859aef02 2315
0a189110 2316 accel_kconfig = []
8a19980e
PB
2317 foreach sym: accelerators
2318 if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, [])
2319 config_target += { sym: 'y' }
2320 config_all += { sym: 'y' }
23a77b2d
PB
2321 if sym == 'CONFIG_TCG' and tcg_arch == 'tci'
2322 config_target += { 'CONFIG_TCG_INTERPRETER': 'y' }
8a19980e 2323 endif
dae0ec15
GH
2324 if target in modular_tcg
2325 config_target += { 'CONFIG_TCG_MODULAR': 'y' }
2326 else
2327 config_target += { 'CONFIG_TCG_BUILTIN': 'y' }
2328 endif
0a189110 2329 accel_kconfig += [ sym + '=y' ]
8a19980e
PB
2330 endif
2331 endforeach
0a189110 2332 if accel_kconfig.length() == 0
fdb75aef
PB
2333 if default_targets
2334 continue
2335 endif
2336 error('No accelerator available for target @0@'.format(target))
2337 endif
8a19980e 2338
fdb75aef 2339 actual_target_dirs += target
812b31d3 2340 config_target += keyval.load('configs/targets' / target + '.mak')
a9a74907 2341 config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
765686d6 2342
fbb4121d
PB
2343 if 'TARGET_NEED_FDT' in config_target
2344 fdt_required += target
2345 endif
2346
fa73168b
PB
2347 # Add default keys
2348 if 'TARGET_BASE_ARCH' not in config_target
2349 config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}
2350 endif
2351 if 'TARGET_ABI_DIR' not in config_target
2352 config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']}
2353 endif
ee3eb3a7
MAL
2354 if 'TARGET_BIG_ENDIAN' not in config_target
2355 config_target += {'TARGET_BIG_ENDIAN': 'n'}
2356 endif
859aef02 2357
ca0fc784 2358 foreach k, v: disassemblers
823eb013 2359 if host_arch.startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k)
ca0fc784
PB
2360 foreach sym: v
2361 config_target += { sym: 'y' }
2362 config_all_disas += { sym: 'y' }
2363 endforeach
2364 endif
2365 endforeach
2366
859aef02
PB
2367 config_target_data = configuration_data()
2368 foreach k, v: config_target
2369 if not k.startswith('TARGET_') and not k.startswith('CONFIG_')
2370 # do nothing
2371 elif ignored.contains(k)
2372 # do nothing
2373 elif k == 'TARGET_BASE_ARCH'
a9a74907
PB
2374 # Note that TARGET_BASE_ARCH ends up in config-target.h but it is
2375 # not used to select files from sourcesets.
859aef02 2376 config_target_data.set('TARGET_' + v.to_upper(), 1)
765686d6 2377 elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX'
859aef02
PB
2378 config_target_data.set_quoted(k, v)
2379 elif v == 'y'
2380 config_target_data.set(k, 1)
ee3eb3a7
MAL
2381 elif v == 'n'
2382 config_target_data.set(k, 0)
859aef02
PB
2383 else
2384 config_target_data.set(k, v)
2385 endif
2386 endforeach
cb2c5531
PM
2387 config_target_data.set('QEMU_ARCH',
2388 'QEMU_ARCH_' + config_target['TARGET_BASE_ARCH'].to_upper())
859aef02
PB
2389 config_target_h += {target: configure_file(output: target + '-config-target.h',
2390 configuration: config_target_data)}
2becc36a
PB
2391
2392 if target.endswith('-softmmu')
d1d5e9ee 2393 config_input = meson.get_external_property(target, 'default')
2becc36a
PB
2394 config_devices_mak = target + '-config-devices.mak'
2395 config_devices_mak = configure_file(
d1d5e9ee 2396 input: ['configs/devices' / target / config_input + '.mak', 'Kconfig'],
2becc36a
PB
2397 output: config_devices_mak,
2398 depfile: config_devices_mak + '.d',
2399 capture: true,
7bc3ca7f
PB
2400 command: [minikconf,
2401 get_option('default_devices') ? '--defconfig' : '--allnoconfig',
2becc36a 2402 config_devices_mak, '@DEPFILE@', '@INPUT@',
f4063f9c
PMD
2403 host_kconfig, accel_kconfig,
2404 'CONFIG_' + config_target['TARGET_ARCH'].to_upper() + '=y'])
859aef02
PB
2405
2406 config_devices_data = configuration_data()
2407 config_devices = keyval.load(config_devices_mak)
2408 foreach k, v: config_devices
2409 config_devices_data.set(k, 1)
2410 endforeach
2becc36a 2411 config_devices_mak_list += config_devices_mak
859aef02
PB
2412 config_devices_h += {target: configure_file(output: target + '-config-devices.h',
2413 configuration: config_devices_data)}
2414 config_target += config_devices
a98006bc 2415 config_all_devices += config_devices
2becc36a
PB
2416 endif
2417 config_target_mak += {target: config_target}
a81df1b6 2418endforeach
fdb75aef 2419target_dirs = actual_target_dirs
a81df1b6 2420
2becc36a
PB
2421# This configuration is used to build files that are shared by
2422# multiple binaries, and then extracted out of the "common"
2423# static_library target.
2424#
2425# We do not use all_sources()/all_dependencies(), because it would
2426# build literally all source files, including devices only used by
2427# targets that are not built for this compilation. The CONFIG_ALL
2428# pseudo symbol replaces it.
2429
05512f55 2430config_all += config_all_devices
2becc36a
PB
2431config_all += config_host
2432config_all += config_all_disas
2433config_all += {
14efd8d3 2434 'CONFIG_XEN': xen.found(),
2becc36a
PB
2435 'CONFIG_SOFTMMU': have_system,
2436 'CONFIG_USER_ONLY': have_user,
2437 'CONFIG_ALL': true,
2438}
2439
eed56e9a
PB
2440target_configs_h = []
2441foreach target: target_dirs
2442 target_configs_h += config_target_h[target]
2443 target_configs_h += config_devices_h.get(target, [])
2444endforeach
2445genh += custom_target('config-poison.h',
2446 input: [target_configs_h],
2447 output: 'config-poison.h',
2448 capture: true,
2449 command: [find_program('scripts/make-config-poison.sh'),
2450 target_configs_h])
2451
a0c9162c
PB
2452##############
2453# Submodules #
2454##############
8b18cdbf
RH
2455
2456capstone = not_found
2457capstone_opt = get_option('capstone')
2458if capstone_opt in ['enabled', 'auto', 'system']
2459 have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile')
bcf36862 2460 capstone = dependency('capstone', version: '>=4.0',
d7dedf42 2461 kwargs: static_kwargs, method: 'pkg-config',
8b18cdbf
RH
2462 required: capstone_opt == 'system' or
2463 capstone_opt == 'enabled' and not have_internal)
8f4aea71
DB
2464
2465 # Some versions of capstone have broken pkg-config file
2466 # that reports a wrong -I path, causing the #include to
2467 # fail later. If the system has such a broken version
2468 # do not use it.
2469 if capstone.found() and not cc.compiles('#include <capstone.h>',
2470 dependencies: [capstone])
2471 capstone = not_found
2472 if capstone_opt == 'system'
2473 error('system capstone requested, it does not appear to work')
2474 endif
2475 endif
2476
8b18cdbf
RH
2477 if capstone.found()
2478 capstone_opt = 'system'
2479 elif have_internal
2480 capstone_opt = 'internal'
2481 else
2482 capstone_opt = 'disabled'
2483 endif
2484endif
2485if capstone_opt == 'internal'
2486 capstone_data = configuration_data()
2487 capstone_data.set('CAPSTONE_USE_SYS_DYN_MEM', '1')
2488
2489 capstone_files = files(
2490 'capstone/cs.c',
2491 'capstone/MCInst.c',
2492 'capstone/MCInstrDesc.c',
2493 'capstone/MCRegisterInfo.c',
2494 'capstone/SStream.c',
2495 'capstone/utils.c'
2496 )
2497
2498 if 'CONFIG_ARM_DIS' in config_all_disas
2499 capstone_data.set('CAPSTONE_HAS_ARM', '1')
2500 capstone_files += files(
2501 'capstone/arch/ARM/ARMDisassembler.c',
2502 'capstone/arch/ARM/ARMInstPrinter.c',
2503 'capstone/arch/ARM/ARMMapping.c',
2504 'capstone/arch/ARM/ARMModule.c'
2505 )
2506 endif
2507
2508 # FIXME: This config entry currently depends on a c++ compiler.
2509 # Which is needed for building libvixl, but not for capstone.
2510 if 'CONFIG_ARM_A64_DIS' in config_all_disas
2511 capstone_data.set('CAPSTONE_HAS_ARM64', '1')
2512 capstone_files += files(
2513 'capstone/arch/AArch64/AArch64BaseInfo.c',
2514 'capstone/arch/AArch64/AArch64Disassembler.c',
2515 'capstone/arch/AArch64/AArch64InstPrinter.c',
2516 'capstone/arch/AArch64/AArch64Mapping.c',
2517 'capstone/arch/AArch64/AArch64Module.c'
2518 )
2519 endif
2520
2521 if 'CONFIG_PPC_DIS' in config_all_disas
2522 capstone_data.set('CAPSTONE_HAS_POWERPC', '1')
2523 capstone_files += files(
2524 'capstone/arch/PowerPC/PPCDisassembler.c',
2525 'capstone/arch/PowerPC/PPCInstPrinter.c',
2526 'capstone/arch/PowerPC/PPCMapping.c',
2527 'capstone/arch/PowerPC/PPCModule.c'
2528 )
2529 endif
2530
3d562845
RH
2531 if 'CONFIG_S390_DIS' in config_all_disas
2532 capstone_data.set('CAPSTONE_HAS_SYSZ', '1')
2533 capstone_files += files(
2534 'capstone/arch/SystemZ/SystemZDisassembler.c',
2535 'capstone/arch/SystemZ/SystemZInstPrinter.c',
2536 'capstone/arch/SystemZ/SystemZMapping.c',
2537 'capstone/arch/SystemZ/SystemZModule.c',
2538 'capstone/arch/SystemZ/SystemZMCTargetDesc.c'
2539 )
2540 endif
2541
8b18cdbf
RH
2542 if 'CONFIG_I386_DIS' in config_all_disas
2543 capstone_data.set('CAPSTONE_HAS_X86', 1)
2544 capstone_files += files(
2545 'capstone/arch/X86/X86Disassembler.c',
2546 'capstone/arch/X86/X86DisassemblerDecoder.c',
2547 'capstone/arch/X86/X86ATTInstPrinter.c',
2548 'capstone/arch/X86/X86IntelInstPrinter.c',
eef20e40 2549 'capstone/arch/X86/X86InstPrinterCommon.c',
8b18cdbf
RH
2550 'capstone/arch/X86/X86Mapping.c',
2551 'capstone/arch/X86/X86Module.c'
2552 )
2553 endif
2554
2555 configure_file(output: 'capstone-defs.h', configuration: capstone_data)
2556
2557 capstone_cargs = [
2558 # FIXME: There does not seem to be a way to completely replace the c_args
2559 # that come from add_project_arguments() -- we can only add to them.
2560 # So: disable all warnings with a big hammer.
2561 '-Wno-error', '-w',
2562
2563 # Include all configuration defines via a header file, which will wind up
2564 # as a dependency on the object file, and thus changes here will result
2565 # in a rebuild.
2566 '-include', 'capstone-defs.h'
2567 ]
2568
2569 libcapstone = static_library('capstone',
610e7e0e 2570 build_by_default: false,
8b18cdbf
RH
2571 sources: capstone_files,
2572 c_args: capstone_cargs,
2573 include_directories: 'capstone/include')
2574 capstone = declare_dependency(link_with: libcapstone,
eef20e40 2575 include_directories: 'capstone/include/capstone')
8b18cdbf 2576endif
4d34a86b
PB
2577
2578slirp = not_found
2579slirp_opt = 'disabled'
2580if have_system
2581 slirp_opt = get_option('slirp')
2582 if slirp_opt in ['enabled', 'auto', 'system']
2583 have_internal = fs.exists(meson.current_source_dir() / 'slirp/meson.build')
d7dedf42 2584 slirp = dependency('slirp', kwargs: static_kwargs,
4d34a86b
PB
2585 method: 'pkg-config',
2586 required: slirp_opt == 'system' or
2587 slirp_opt == 'enabled' and not have_internal)
2588 if slirp.found()
2589 slirp_opt = 'system'
2590 elif have_internal
2591 slirp_opt = 'internal'
2592 else
2593 slirp_opt = 'disabled'
2594 endif
2595 endif
2596 if slirp_opt == 'internal'
2597 slirp_deps = []
2598 if targetos == 'windows'
2599 slirp_deps = cc.find_library('iphlpapi')
43f547b7
MAL
2600 elif targetos == 'darwin'
2601 slirp_deps = cc.find_library('resolv')
4d34a86b
PB
2602 endif
2603 slirp_conf = configuration_data()
2604 slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0])
2605 slirp_conf.set('SLIRP_MINOR_VERSION', meson.project_version().split('.')[1])
2606 slirp_conf.set('SLIRP_MICRO_VERSION', meson.project_version().split('.')[2])
2607 slirp_conf.set_quoted('SLIRP_VERSION_STRING', meson.project_version())
2608 slirp_cargs = ['-DG_LOG_DOMAIN="Slirp"']
2609 slirp_files = [
2610 'slirp/src/arp_table.c',
2611 'slirp/src/bootp.c',
2612 'slirp/src/cksum.c',
2613 'slirp/src/dhcpv6.c',
2614 'slirp/src/dnssearch.c',
2615 'slirp/src/if.c',
2616 'slirp/src/ip6_icmp.c',
2617 'slirp/src/ip6_input.c',
2618 'slirp/src/ip6_output.c',
2619 'slirp/src/ip_icmp.c',
2620 'slirp/src/ip_input.c',
2621 'slirp/src/ip_output.c',
2622 'slirp/src/mbuf.c',
2623 'slirp/src/misc.c',
2624 'slirp/src/ncsi.c',
2625 'slirp/src/ndp_table.c',
2626 'slirp/src/sbuf.c',
2627 'slirp/src/slirp.c',
2628 'slirp/src/socket.c',
2629 'slirp/src/state.c',
2630 'slirp/src/stream.c',
2631 'slirp/src/tcp_input.c',
2632 'slirp/src/tcp_output.c',
2633 'slirp/src/tcp_subr.c',
2634 'slirp/src/tcp_timer.c',
2635 'slirp/src/tftp.c',
2636 'slirp/src/udp.c',
2637 'slirp/src/udp6.c',
2638 'slirp/src/util.c',
2639 'slirp/src/version.c',
2640 'slirp/src/vmstate.c',
2641 ]
2642
2643 configure_file(
2644 input : 'slirp/src/libslirp-version.h.in',
2645 output : 'libslirp-version.h',
2646 configuration: slirp_conf)
2647
2648 slirp_inc = include_directories('slirp', 'slirp/src')
2649 libslirp = static_library('slirp',
610e7e0e 2650 build_by_default: false,
4d34a86b
PB
2651 sources: slirp_files,
2652 c_args: slirp_cargs,
2653 include_directories: slirp_inc)
2654 slirp = declare_dependency(link_with: libslirp,
2655 dependencies: slirp_deps,
2656 include_directories: slirp_inc)
2657 endif
2658endif
2659
c715343f
DB
2660# For CFI, we need to compile slirp as a static library together with qemu.
2661# This is because we register slirp functions as callbacks for QEMU Timers.
2662# When using a system-wide shared libslirp, the type information for the
2663# callback is missing and the timer call produces a false positive with CFI.
2664#
2665# Now that slirp_opt has been defined, check if the selected slirp is compatible
2666# with control-flow integrity.
2667if get_option('cfi') and slirp_opt == 'system'
2668 error('Control-Flow Integrity is not compatible with system-wide slirp.' \
2669 + ' Please configure with --enable-slirp=git')
2670endif
2671
fbb4121d 2672fdt = not_found
fbb4121d 2673if have_system
c593d841 2674 fdt_opt = get_option('fdt')
fbb4121d
PB
2675 if fdt_opt in ['enabled', 'auto', 'system']
2676 have_internal = fs.exists(meson.current_source_dir() / 'dtc/libfdt/Makefile.libfdt')
d7dedf42 2677 fdt = cc.find_library('fdt', kwargs: static_kwargs,
fbb4121d
PB
2678 required: fdt_opt == 'system' or
2679 fdt_opt == 'enabled' and not have_internal)
2680 if fdt.found() and cc.links('''
2681 #include <libfdt.h>
2682 #include <libfdt_env.h>
de47b0ff 2683 int main(void) { fdt_find_max_phandle(NULL, NULL); return 0; }''',
fbb4121d
PB
2684 dependencies: fdt)
2685 fdt_opt = 'system'
6c22853c
TH
2686 elif fdt_opt == 'system'
2687 error('system libfdt requested, but it is too old (1.5.1 or newer required)')
fbb4121d
PB
2688 elif have_internal
2689 fdt_opt = 'internal'
2690 else
2691 fdt_opt = 'disabled'
87daf898 2692 fdt = not_found
fbb4121d
PB
2693 endif
2694 endif
2695 if fdt_opt == 'internal'
2696 fdt_files = files(
2697 'dtc/libfdt/fdt.c',
2698 'dtc/libfdt/fdt_ro.c',
2699 'dtc/libfdt/fdt_wip.c',
2700 'dtc/libfdt/fdt_sw.c',
2701 'dtc/libfdt/fdt_rw.c',
2702 'dtc/libfdt/fdt_strerror.c',
2703 'dtc/libfdt/fdt_empty_tree.c',
2704 'dtc/libfdt/fdt_addresses.c',
2705 'dtc/libfdt/fdt_overlay.c',
2706 'dtc/libfdt/fdt_check.c',
2707 )
2708
2709 fdt_inc = include_directories('dtc/libfdt')
2710 libfdt = static_library('fdt',
610e7e0e 2711 build_by_default: false,
fbb4121d
PB
2712 sources: fdt_files,
2713 include_directories: fdt_inc)
2714 fdt = declare_dependency(link_with: libfdt,
2715 include_directories: fdt_inc)
2716 endif
c593d841
PMD
2717else
2718 fdt_opt = 'disabled'
fbb4121d
PB
2719endif
2720if not fdt.found() and fdt_required.length() > 0
2721 error('fdt not available but required by targets ' + ', '.join(fdt_required))
2722endif
2723
8b18cdbf 2724config_host_data.set('CONFIG_CAPSTONE', capstone.found())
fbb4121d 2725config_host_data.set('CONFIG_FDT', fdt.found())
4d34a86b 2726config_host_data.set('CONFIG_SLIRP', slirp.found())
8b18cdbf 2727
a0c9162c
PB
2728#####################
2729# Generated sources #
2730#####################
8b18cdbf 2731
a0c9162c 2732genh += configure_file(output: 'config-host.h', configuration: config_host_data)
a81df1b6 2733
3f885659 2734hxtool = find_program('scripts/hxtool')
650b5d54 2735shaderinclude = find_program('scripts/shaderinclude.pl')
a81df1b6 2736qapi_gen = find_program('scripts/qapi-gen.py')
654d6b04
PB
2737qapi_gen_depends = [ meson.current_source_dir() / 'scripts/qapi/__init__.py',
2738 meson.current_source_dir() / 'scripts/qapi/commands.py',
2739 meson.current_source_dir() / 'scripts/qapi/common.py',
2740 meson.current_source_dir() / 'scripts/qapi/error.py',
2741 meson.current_source_dir() / 'scripts/qapi/events.py',
2742 meson.current_source_dir() / 'scripts/qapi/expr.py',
2743 meson.current_source_dir() / 'scripts/qapi/gen.py',
2744 meson.current_source_dir() / 'scripts/qapi/introspect.py',
2745 meson.current_source_dir() / 'scripts/qapi/parser.py',
2746 meson.current_source_dir() / 'scripts/qapi/schema.py',
2747 meson.current_source_dir() / 'scripts/qapi/source.py',
2748 meson.current_source_dir() / 'scripts/qapi/types.py',
2749 meson.current_source_dir() / 'scripts/qapi/visit.py',
2750 meson.current_source_dir() / 'scripts/qapi/common.py',
2751 meson.current_source_dir() / 'scripts/qapi-gen.py'
a81df1b6
PB
2752]
2753
2754tracetool = [
2755 python, files('scripts/tracetool.py'),
9c29b741 2756 '--backend=' + ','.join(get_option('trace_backends'))
a81df1b6 2757]
0572d6cd
SH
2758tracetool_depends = files(
2759 'scripts/tracetool/backend/log.py',
2760 'scripts/tracetool/backend/__init__.py',
2761 'scripts/tracetool/backend/dtrace.py',
2762 'scripts/tracetool/backend/ftrace.py',
2763 'scripts/tracetool/backend/simple.py',
2764 'scripts/tracetool/backend/syslog.py',
2765 'scripts/tracetool/backend/ust.py',
0572d6cd
SH
2766 'scripts/tracetool/format/ust_events_c.py',
2767 'scripts/tracetool/format/ust_events_h.py',
2768 'scripts/tracetool/format/__init__.py',
2769 'scripts/tracetool/format/d.py',
0572d6cd
SH
2770 'scripts/tracetool/format/simpletrace_stap.py',
2771 'scripts/tracetool/format/c.py',
2772 'scripts/tracetool/format/h.py',
0572d6cd
SH
2773 'scripts/tracetool/format/log_stap.py',
2774 'scripts/tracetool/format/stap.py',
0572d6cd
SH
2775 'scripts/tracetool/__init__.py',
2776 'scripts/tracetool/transform.py',
2777 'scripts/tracetool/vcpu.py'
2778)
a81df1b6 2779
2c273f32
MAL
2780qemu_version_cmd = [find_program('scripts/qemu-version.sh'),
2781 meson.current_source_dir(),
859aef02 2782 config_host['PKGVERSION'], meson.project_version()]
2c273f32
MAL
2783qemu_version = custom_target('qemu-version.h',
2784 output: 'qemu-version.h',
2785 command: qemu_version_cmd,
2786 capture: true,
2787 build_by_default: true,
2788 build_always_stale: true)
2789genh += qemu_version
2790
3f885659
MAL
2791hxdep = []
2792hx_headers = [
2793 ['qemu-options.hx', 'qemu-options.def'],
2794 ['qemu-img-cmds.hx', 'qemu-img-cmds.h'],
2795]
2796if have_system
2797 hx_headers += [
2798 ['hmp-commands.hx', 'hmp-commands.h'],
2799 ['hmp-commands-info.hx', 'hmp-commands-info.h'],
2800 ]
2801endif
2802foreach d : hx_headers
b7c70bf2 2803 hxdep += custom_target(d[1],
3f885659
MAL
2804 input: files(d[0]),
2805 output: d[1],
2806 capture: true,
2807 build_by_default: true, # to be removed when added to a target
2808 command: [hxtool, '-h', '@INPUT0@'])
2809endforeach
2810genh += hxdep
2811
a0c9162c
PB
2812###################
2813# Collect sources #
2814###################
a81df1b6 2815
55567891 2816authz_ss = ss.source_set()
4a96337d 2817blockdev_ss = ss.source_set()
7e2b888f 2818block_ss = ss.source_set()
c2306d71 2819chardev_ss = ss.source_set()
7e2b888f 2820common_ss = ss.source_set()
2389304a 2821crypto_ss = ss.source_set()
f73fb063 2822hwcore_ss = ss.source_set()
f78536b1 2823io_ss = ss.source_set()
7e2b888f 2824qmp_ss = ss.source_set()
da33fc09 2825qom_ss = ss.source_set()
7e2b888f 2826softmmu_ss = ss.source_set()
64ed6f92 2827specific_fuzz_ss = ss.source_set()
7e2b888f
PMD
2828specific_ss = ss.source_set()
2829stub_ss = ss.source_set()
2830trace_ss = ss.source_set()
2831user_ss = ss.source_set()
2832util_ss = ss.source_set()
2becc36a 2833
c94a7b88
GH
2834# accel modules
2835qtest_module_ss = ss.source_set()
dae0ec15 2836tcg_module_ss = ss.source_set()
c94a7b88 2837
3154fee4 2838modules = {}
db2e89df 2839target_modules = {}
2becc36a
PB
2840hw_arch = {}
2841target_arch = {}
2842target_softmmu_arch = {}
46369b50 2843target_user_arch = {}
a81df1b6
PB
2844
2845###############
2846# Trace files #
2847###############
2848
c9322ab5
MAL
2849# TODO: add each directory to the subdirs from its own meson.build, once
2850# we have those
a81df1b6 2851trace_events_subdirs = [
a81df1b6 2852 'crypto',
69ff4d0a
PMD
2853 'qapi',
2854 'qom',
a81df1b6 2855 'monitor',
69ff4d0a 2856 'util',
a81df1b6 2857]
6ddc1abe 2858if have_linux_user
a81df1b6
PB
2859 trace_events_subdirs += [ 'linux-user' ]
2860endif
6ddc1abe
WL
2861if have_bsd_user
2862 trace_events_subdirs += [ 'bsd-user' ]
2863endif
a81df1b6
PB
2864if have_block
2865 trace_events_subdirs += [
2866 'authz',
2867 'block',
2868 'io',
2869 'nbd',
2870 'scsi',
2871 ]
2872endif
2873if have_system
2874 trace_events_subdirs += [
8985db26 2875 'accel/kvm',
a81df1b6
PB
2876 'audio',
2877 'backends',
2878 'backends/tpm',
2879 'chardev',
46627f41 2880 'ebpf',
a81df1b6
PB
2881 'hw/9pfs',
2882 'hw/acpi',
77c05b0b 2883 'hw/adc',
a81df1b6
PB
2884 'hw/alpha',
2885 'hw/arm',
2886 'hw/audio',
2887 'hw/block',
2888 'hw/block/dataplane',
2889 'hw/char',
2890 'hw/display',
2891 'hw/dma',
2892 'hw/hppa',
2893 'hw/hyperv',
2894 'hw/i2c',
2895 'hw/i386',
2896 'hw/i386/xen',
2897 'hw/ide',
2898 'hw/input',
2899 'hw/intc',
2900 'hw/isa',
2901 'hw/mem',
2902 'hw/mips',
2903 'hw/misc',
2904 'hw/misc/macio',
2905 'hw/net',
98e5d7a2 2906 'hw/net/can',
ce0e6a2c 2907 'hw/nubus',
88eea45c 2908 'hw/nvme',
a81df1b6
PB
2909 'hw/nvram',
2910 'hw/pci',
2911 'hw/pci-host',
2912 'hw/ppc',
2913 'hw/rdma',
2914 'hw/rdma/vmw',
2915 'hw/rtc',
2916 'hw/s390x',
2917 'hw/scsi',
2918 'hw/sd',
ad52cfc1 2919 'hw/sh4',
a81df1b6
PB
2920 'hw/sparc',
2921 'hw/sparc64',
2922 'hw/ssi',
2923 'hw/timer',
2924 'hw/tpm',
2925 'hw/usb',
2926 'hw/vfio',
2927 'hw/virtio',
2928 'hw/watchdog',
2929 'hw/xen',
2930 'hw/gpio',
a81df1b6
PB
2931 'migration',
2932 'net',
8b7a5507 2933 'softmmu',
a81df1b6 2934 'ui',
ad22c308 2935 'hw/remote',
a81df1b6
PB
2936 ]
2937endif
8985db26
PMD
2938if have_system or have_user
2939 trace_events_subdirs += [
2940 'accel/tcg',
2941 'hw/core',
2942 'target/arm',
a1477da3 2943 'target/arm/hvf',
8985db26
PMD
2944 'target/hppa',
2945 'target/i386',
2946 'target/i386/kvm',
34b8ff25 2947 'target/mips/tcg',
6f83e277 2948 'target/nios2',
8985db26
PMD
2949 'target/ppc',
2950 'target/riscv',
2951 'target/s390x',
67043607 2952 'target/s390x/kvm',
8985db26
PMD
2953 'target/sparc',
2954 ]
2955endif
a81df1b6 2956
0df750e9 2957vhost_user = not_found
eb9baecd 2958if targetos == 'linux' and 'CONFIG_VHOST_USER' in config_host
0df750e9
MAL
2959 libvhost_user = subproject('libvhost-user')
2960 vhost_user = libvhost_user.get_variable('vhost_user_dep')
2961endif
2962
b83a80e8
VSO
2963# NOTE: the trace/ subdirectory needs the qapi_trace_events variable
2964# that is filled in by qapi/.
a81df1b6
PB
2965subdir('qapi')
2966subdir('qobject')
2967subdir('stubs')
2968subdir('trace')
2969subdir('util')
5582c58f
MAL
2970subdir('qom')
2971subdir('authz')
a81df1b6 2972subdir('crypto')
2d78b56e 2973subdir('ui')
a81df1b6 2974
3154fee4
MAL
2975
2976if enable_modules
2977 libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO')
2978 modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO')
2979endif
2980
2becc36a 2981stub_ss = stub_ss.apply(config_all, strict: false)
a81df1b6
PB
2982
2983util_ss.add_all(trace_ss)
2becc36a 2984util_ss = util_ss.apply(config_all, strict: false)
a81df1b6
PB
2985libqemuutil = static_library('qemuutil',
2986 sources: util_ss.sources() + stub_ss.sources() + genh,
6d7c7c2d 2987 dependencies: [util_ss.dependencies(), libm, threads, glib, socket, malloc, pixman])
a81df1b6 2988qemuutil = declare_dependency(link_with: libqemuutil,
04c6f1e7 2989 sources: genh + version_res)
a81df1b6 2990
957b31f6
PMD
2991if have_system or have_user
2992 decodetree = generator(find_program('scripts/decodetree.py'),
2993 output: 'decode-@BASENAME@.c.inc',
2994 arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@'])
2995 subdir('libdecnumber')
2996 subdir('target')
2997endif
abff1abf 2998
478e943f 2999subdir('audio')
7fcfd456 3000subdir('io')
848e8ff6 3001subdir('chardev')
ec0d5893 3002subdir('fsdev')
708eab42 3003subdir('dump')
ec0d5893 3004
f285bd3f
PMD
3005if have_block
3006 block_ss.add(files(
3007 'block.c',
3008 'blockjob.c',
3009 'job.c',
3010 'qemu-io-cmds.c',
3011 ))
406523f6
PB
3012 if config_host_data.get('CONFIG_REPLICATION')
3013 block_ss.add(files('replication.c'))
3014 endif
f285bd3f
PMD
3015
3016 subdir('nbd')
3017 subdir('scsi')
3018 subdir('block')
3019
3020 blockdev_ss.add(files(
3021 'blockdev.c',
3022 'blockdev-nbd.c',
3023 'iothread.c',
3024 'job-qmp.c',
3025 ), gnutls)
3026
3027 # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon,
3028 # os-win32.c does not
3029 blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c'))
3030 softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')])
3031endif
4a96337d
PB
3032
3033common_ss.add(files('cpus-common.c'))
3034
5d3ea0e1 3035subdir('softmmu')
c9322ab5 3036
f343346b 3037common_ss.add(capstone)
d9f24bf5 3038specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
c9322ab5 3039
44b99a6d
RH
3040# Work around a gcc bug/misfeature wherein constant propagation looks
3041# through an alias:
3042# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99696
3043# to guess that a const variable is always zero. Without lto, this is
3044# impossible, as the alias is restricted to page-vary-common.c. Indeed,
3045# without lto, not even the alias is required -- we simply use different
3046# declarations in different compilation units.
3047pagevary = files('page-vary-common.c')
3048if get_option('b_lto')
3049 pagevary_flags = ['-fno-lto']
3050 if get_option('cfi')
3051 pagevary_flags += '-fno-sanitize=cfi-icall'
3052 endif
54c9b194 3053 pagevary = static_library('page-vary-common', sources: pagevary + genh,
44b99a6d
RH
3054 c_args: pagevary_flags)
3055 pagevary = declare_dependency(link_with: pagevary)
3056endif
3057common_ss.add(pagevary)
6670d4d0
RH
3058specific_ss.add(files('page-vary.c'))
3059
ab318051 3060subdir('backends')
c574e161 3061subdir('disas')
55166230 3062subdir('migration')
ff219dca 3063subdir('monitor')
cdaf0722 3064subdir('net')
17ef2af6 3065subdir('replay')
8df9f0c3 3066subdir('semihosting')
582ea95f 3067subdir('hw')
104cc2c0 3068subdir('tcg')
c6347541 3069subdir('fpu')
1a82878a 3070subdir('accel')
f556b4a1 3071subdir('plugins')
bbf15aaf
RH
3072subdir('ebpf')
3073
3074common_user_inc = []
3075
3076subdir('common-user')
b309c321 3077subdir('bsd-user')
3a30446a 3078subdir('linux-user')
46627f41 3079
a2ce7dbd
PB
3080# needed for fuzzing binaries
3081subdir('tests/qtest/libqos')
64ed6f92 3082subdir('tests/qtest/fuzz')
a2ce7dbd 3083
c94a7b88 3084# accel modules
dae0ec15
GH
3085tcg_real_module_ss = ss.source_set()
3086tcg_real_module_ss.add_all(when: 'CONFIG_TCG_MODULAR', if_true: tcg_module_ss)
3087specific_ss.add_all(when: 'CONFIG_TCG_BUILTIN', if_true: tcg_module_ss)
3088target_modules += { 'accel' : { 'qtest': qtest_module_ss,
3089 'tcg': tcg_real_module_ss }}
c94a7b88 3090
a0c9162c
PB
3091########################
3092# Library dependencies #
3093########################
3094
f5723ab6 3095modinfo_collect = find_program('scripts/modinfo-collect.py')
5ebbfecc 3096modinfo_generate = find_program('scripts/modinfo-generate.py')
f5723ab6
GH
3097modinfo_files = []
3098
3154fee4
MAL
3099block_mods = []
3100softmmu_mods = []
3101foreach d, list : modules
3102 foreach m, module_ss : list
3103 if enable_modules and targetos != 'windows'
3e292c51 3104 module_ss = module_ss.apply(config_all, strict: false)
3154fee4
MAL
3105 sl = static_library(d + '-' + m, [genh, module_ss.sources()],
3106 dependencies: [modulecommon, module_ss.dependencies()], pic: true)
3107 if d == 'block'
3108 block_mods += sl
3109 else
3110 softmmu_mods += sl
3111 endif
f5723ab6
GH
3112 if module_ss.sources() != []
3113 # FIXME: Should use sl.extract_all_objects(recursive: true) as
3114 # input. Sources can be used multiple times but objects are
3115 # unique when it comes to lookup in compile_commands.json.
3116 # Depnds on a mesion version with
3117 # https://github.com/mesonbuild/meson/pull/8900
3118 modinfo_files += custom_target(d + '-' + m + '.modinfo',
3119 output: d + '-' + m + '.modinfo',
ac347111 3120 input: module_ss.sources() + genh,
f5723ab6 3121 capture: true,
ac347111 3122 command: [modinfo_collect, module_ss.sources()])
f5723ab6 3123 endif
3154fee4
MAL
3124 else
3125 if d == 'block'
3126 block_ss.add_all(module_ss)
3127 else
3128 softmmu_ss.add_all(module_ss)
3129 endif
3130 endif
3131 endforeach
3132endforeach
3133
db2e89df
GH
3134foreach d, list : target_modules
3135 foreach m, module_ss : list
3136 if enable_modules and targetos != 'windows'
3137 foreach target : target_dirs
3138 if target.endswith('-softmmu')
3139 config_target = config_target_mak[target]
3140 config_target += config_host
3141 target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
3142 c_args = ['-DNEED_CPU_H',
3143 '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
3144 '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
3145 target_module_ss = module_ss.apply(config_target, strict: false)
3146 if target_module_ss.sources() != []
3147 module_name = d + '-' + m + '-' + config_target['TARGET_NAME']
3148 sl = static_library(module_name,
3149 [genh, target_module_ss.sources()],
3150 dependencies: [modulecommon, target_module_ss.dependencies()],
3151 include_directories: target_inc,
3152 c_args: c_args,
3153 pic: true)
3154 softmmu_mods += sl
3155 # FIXME: Should use sl.extract_all_objects(recursive: true) too.
3156 modinfo_files += custom_target(module_name + '.modinfo',
3157 output: module_name + '.modinfo',
917ddc27 3158 input: target_module_ss.sources() + genh,
db2e89df 3159 capture: true,
917ddc27 3160 command: [modinfo_collect, '--target', target, target_module_ss.sources()])
db2e89df
GH
3161 endif
3162 endif
3163 endforeach
3164 else
3165 specific_ss.add_all(module_ss)
3166 endif
3167 endforeach
3168endforeach
3169
5ebbfecc
GH
3170if enable_modules
3171 modinfo_src = custom_target('modinfo.c',
3172 output: 'modinfo.c',
3173 input: modinfo_files,
3174 command: [modinfo_generate, '@INPUT@'],
3175 capture: true)
3176 modinfo_lib = static_library('modinfo', modinfo_src)
3177 modinfo_dep = declare_dependency(link_whole: modinfo_lib)
3178 softmmu_ss.add(modinfo_dep)
3179endif
3180
3154fee4 3181nm = find_program('nm')
604f3e4e 3182undefsym = find_program('scripts/undefsym.py')
3154fee4
MAL
3183block_syms = custom_target('block.syms', output: 'block.syms',
3184 input: [libqemuutil, block_mods],
3185 capture: true,
3186 command: [undefsym, nm, '@INPUT@'])
3187qemu_syms = custom_target('qemu.syms', output: 'qemu.syms',
3188 input: [libqemuutil, softmmu_mods],
3189 capture: true,
3190 command: [undefsym, nm, '@INPUT@'])
3191
da33fc09
PMD
3192qom_ss = qom_ss.apply(config_host, strict: false)
3193libqom = static_library('qom', qom_ss.sources() + genh,
3194 dependencies: [qom_ss.dependencies()],
3195 name_suffix: 'fa')
3196
3197qom = declare_dependency(link_whole: libqom)
3198
55567891
PMD
3199authz_ss = authz_ss.apply(config_host, strict: false)
3200libauthz = static_library('authz', authz_ss.sources() + genh,
3201 dependencies: [authz_ss.dependencies()],
3202 name_suffix: 'fa',
3203 build_by_default: false)
3204
3205authz = declare_dependency(link_whole: libauthz,
3206 dependencies: qom)
3207
2389304a
PMD
3208crypto_ss = crypto_ss.apply(config_host, strict: false)
3209libcrypto = static_library('crypto', crypto_ss.sources() + genh,
3210 dependencies: [crypto_ss.dependencies()],
3211 name_suffix: 'fa',
3212 build_by_default: false)
3213
3214crypto = declare_dependency(link_whole: libcrypto,
3215 dependencies: [authz, qom])
3216
f78536b1
PMD
3217io_ss = io_ss.apply(config_host, strict: false)
3218libio = static_library('io', io_ss.sources() + genh,
3219 dependencies: [io_ss.dependencies()],
3220 link_with: libqemuutil,
3221 name_suffix: 'fa',
3222 build_by_default: false)
3223
3224io = declare_dependency(link_whole: libio, dependencies: [crypto, qom])
3225
7e6edef3
PMD
3226libmigration = static_library('migration', sources: migration_files + genh,
3227 name_suffix: 'fa',
3228 build_by_default: false)
3229migration = declare_dependency(link_with: libmigration,
3230 dependencies: [zlib, qom, io])
3231softmmu_ss.add(migration)
3232
5e5733e5
MAL
3233block_ss = block_ss.apply(config_host, strict: false)
3234libblock = static_library('block', block_ss.sources() + genh,
3235 dependencies: block_ss.dependencies(),
3236 link_depends: block_syms,
3237 name_suffix: 'fa',
3238 build_by_default: false)
3239
3240block = declare_dependency(link_whole: [libblock],
b7c70bf2
MAL
3241 link_args: '@block.syms',
3242 dependencies: [crypto, io])
5e5733e5 3243
4fb9071f
SH
3244blockdev_ss = blockdev_ss.apply(config_host, strict: false)
3245libblockdev = static_library('blockdev', blockdev_ss.sources() + genh,
3246 dependencies: blockdev_ss.dependencies(),
3247 name_suffix: 'fa',
3248 build_by_default: false)
3249
3250blockdev = declare_dependency(link_whole: [libblockdev],
3251 dependencies: [block])
3252
ff219dca
PB
3253qmp_ss = qmp_ss.apply(config_host, strict: false)
3254libqmp = static_library('qmp', qmp_ss.sources() + genh,
3255 dependencies: qmp_ss.dependencies(),
3256 name_suffix: 'fa',
3257 build_by_default: false)
3258
3259qmp = declare_dependency(link_whole: [libqmp])
3260
c2306d71
PMD
3261libchardev = static_library('chardev', chardev_ss.sources() + genh,
3262 name_suffix: 'fa',
22d1f7a8 3263 dependencies: chardev_ss.dependencies(),
c2306d71
PMD
3264 build_by_default: false)
3265
3266chardev = declare_dependency(link_whole: libchardev)
3267
f73fb063
PMD
3268hwcore_ss = hwcore_ss.apply(config_host, strict: false)
3269libhwcore = static_library('hwcore', sources: hwcore_ss.sources() + genh,
e28ab096
PMD
3270 name_suffix: 'fa',
3271 build_by_default: false)
3272hwcore = declare_dependency(link_whole: libhwcore)
3273common_ss.add(hwcore)
3274
064f8ee7
PMD
3275###########
3276# Targets #
3277###########
3278
fb72176b 3279emulator_modules = []
3154fee4 3280foreach m : block_mods + softmmu_mods
fb72176b
PB
3281 emulator_modules += shared_module(m.name(),
3282 build_by_default: true,
3154fee4
MAL
3283 name_prefix: '',
3284 link_whole: m,
3285 install: true,
16bf7a33 3286 install_dir: qemu_moddir)
3154fee4
MAL
3287endforeach
3288
4fb9071f 3289softmmu_ss.add(authz, blockdev, chardev, crypto, io, qmp)
64ed6f92
PB
3290common_ss.add(qom, qemuutil)
3291
3292common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss])
2becc36a
PB
3293common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss)
3294
3295common_all = common_ss.apply(config_all, strict: false)
3296common_all = static_library('common',
3297 build_by_default: false,
3298 sources: common_all.sources() + genh,
9d24fb73 3299 include_directories: common_user_inc,
75eebe0b 3300 implicit_include_directories: false,
2becc36a
PB
3301 dependencies: common_all.dependencies(),
3302 name_suffix: 'fa')
3303
c9322ab5
MAL
3304feature_to_c = find_program('scripts/feature_to_c.sh')
3305
30cfa50d
PMD
3306if targetos == 'darwin'
3307 entitlement = find_program('scripts/entitlement.sh')
3308endif
3309
fd5eef85 3310emulators = {}
2becc36a
PB
3311foreach target : target_dirs
3312 config_target = config_target_mak[target]
3313 target_name = config_target['TARGET_NAME']
ffb91f68 3314 target_base_arch = config_target['TARGET_BASE_ARCH']
859aef02 3315 arch_srcs = [config_target_h[target]]
64ed6f92
PB
3316 arch_deps = []
3317 c_args = ['-DNEED_CPU_H',
3318 '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
3319 '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
b6c7cfd4 3320 link_args = emulator_link_args
2becc36a 3321
859aef02 3322 config_target += config_host
2becc36a
PB
3323 target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
3324 if targetos == 'linux'
3325 target_inc += include_directories('linux-headers', is_system: true)
3326 endif
3327 if target.endswith('-softmmu')
3328 qemu_target_name = 'qemu-system-' + target_name
3329 target_type='system'
ffb91f68 3330 t = target_softmmu_arch[target_base_arch].apply(config_target, strict: false)
abff1abf 3331 arch_srcs += t.sources()
64ed6f92 3332 arch_deps += t.dependencies()
abff1abf 3333
ffb91f68 3334 hw_dir = target_name == 'sparc64' ? 'sparc64' : target_base_arch
2c44220d
MAL
3335 hw = hw_arch[hw_dir].apply(config_target, strict: false)
3336 arch_srcs += hw.sources()
64ed6f92 3337 arch_deps += hw.dependencies()
2c44220d 3338
2becc36a 3339 arch_srcs += config_devices_h[target]
64ed6f92 3340 link_args += ['@block.syms', '@qemu.syms']
2becc36a 3341 else
3a30446a 3342 abi = config_target['TARGET_ABI_DIR']
2becc36a 3343 target_type='user'
a3a576b0 3344 target_inc += common_user_inc
2becc36a 3345 qemu_target_name = 'qemu-' + target_name
ffb91f68
PB
3346 if target_base_arch in target_user_arch
3347 t = target_user_arch[target_base_arch].apply(config_target, strict: false)
46369b50
PMD
3348 arch_srcs += t.sources()
3349 arch_deps += t.dependencies()
3350 endif
2becc36a
PB
3351 if 'CONFIG_LINUX_USER' in config_target
3352 base_dir = 'linux-user'
e2a74729
WL
3353 endif
3354 if 'CONFIG_BSD_USER' in config_target
2becc36a 3355 base_dir = 'bsd-user'
e2a74729 3356 target_inc += include_directories('bsd-user/' / targetos)
85fc1b5d 3357 target_inc += include_directories('bsd-user/host/' / host_arch)
e2a74729 3358 dir = base_dir / abi
19bf129f 3359 arch_srcs += files(dir / 'signal.c', dir / 'target_arch_cpu.c')
2becc36a
PB
3360 endif
3361 target_inc += include_directories(
3362 base_dir,
3a30446a 3363 base_dir / abi,
2becc36a 3364 )
3a30446a
MAL
3365 if 'CONFIG_LINUX_USER' in config_target
3366 dir = base_dir / abi
3367 arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c')
3368 if config_target.has_key('TARGET_SYSTBL_ABI')
3369 arch_srcs += \
3370 syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'],
3371 extra_args : config_target['TARGET_SYSTBL_ABI'])
3372 endif
3373 endif
2becc36a
PB
3374 endif
3375
c9322ab5
MAL
3376 if 'TARGET_XML_FILES' in config_target
3377 gdbstub_xml = custom_target(target + '-gdbstub-xml.c',
3378 output: target + '-gdbstub-xml.c',
3379 input: files(config_target['TARGET_XML_FILES'].split()),
3380 command: [feature_to_c, '@INPUT@'],
3381 capture: true)
3382 arch_srcs += gdbstub_xml
3383 endif
3384
ffb91f68 3385 t = target_arch[target_base_arch].apply(config_target, strict: false)
abff1abf 3386 arch_srcs += t.sources()
64ed6f92 3387 arch_deps += t.dependencies()
abff1abf 3388
2becc36a
PB
3389 target_common = common_ss.apply(config_target, strict: false)
3390 objects = common_all.extract_objects(target_common.sources())
64ed6f92 3391 deps = target_common.dependencies()
2becc36a 3392
2becc36a
PB
3393 target_specific = specific_ss.apply(config_target, strict: false)
3394 arch_srcs += target_specific.sources()
64ed6f92 3395 arch_deps += target_specific.dependencies()
2becc36a 3396
64ed6f92 3397 lib = static_library('qemu-' + target,
859aef02 3398 sources: arch_srcs + genh,
b7612f45 3399 dependencies: arch_deps,
2becc36a
PB
3400 objects: objects,
3401 include_directories: target_inc,
64ed6f92
PB
3402 c_args: c_args,
3403 build_by_default: false,
2becc36a 3404 name_suffix: 'fa')
64ed6f92
PB
3405
3406 if target.endswith('-softmmu')
3407 execs = [{
3408 'name': 'qemu-system-' + target_name,
654d6b04 3409 'win_subsystem': 'console',
64ed6f92
PB
3410 'sources': files('softmmu/main.c'),
3411 'dependencies': []
3412 }]
35be72ba 3413 if targetos == 'windows' and (sdl.found() or gtk.found())
64ed6f92
PB
3414 execs += [{
3415 'name': 'qemu-system-' + target_name + 'w',
654d6b04 3416 'win_subsystem': 'windows',
64ed6f92
PB
3417 'sources': files('softmmu/main.c'),
3418 'dependencies': []
3419 }]
3420 endif
537b7248 3421 if get_option('fuzzing')
64ed6f92
PB
3422 specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false)
3423 execs += [{
3424 'name': 'qemu-fuzz-' + target_name,
654d6b04 3425 'win_subsystem': 'console',
64ed6f92
PB
3426 'sources': specific_fuzz.sources(),
3427 'dependencies': specific_fuzz.dependencies(),
64ed6f92
PB
3428 }]
3429 endif
3430 else
3431 execs = [{
3432 'name': 'qemu-' + target_name,
654d6b04 3433 'win_subsystem': 'console',
64ed6f92
PB
3434 'sources': [],
3435 'dependencies': []
3436 }]
3437 endif
3438 foreach exe: execs
8a74ce61 3439 exe_name = exe['name']
3983a767 3440 if targetos == 'darwin'
8a74ce61
AG
3441 exe_name += '-unsigned'
3442 endif
3443
3444 emulator = executable(exe_name, exe['sources'],
237377ac 3445 install: true,
64ed6f92
PB
3446 c_args: c_args,
3447 dependencies: arch_deps + deps + exe['dependencies'],
3448 objects: lib.extract_all_objects(recursive: true),
3449 link_language: link_language,
3450 link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []),
3451 link_args: link_args,
654d6b04 3452 win_subsystem: exe['win_subsystem'])
8a74ce61 3453
3983a767 3454 if targetos == 'darwin'
411ad8dd
AO
3455 icon = 'pc-bios/qemu.rsrc'
3456 build_input = [emulator, files(icon)]
3457 install_input = [
3458 get_option('bindir') / exe_name,
3459 meson.current_source_dir() / icon
3460 ]
3461 if 'CONFIG_HVF' in config_target
3462 entitlements = 'accel/hvf/entitlements.plist'
3463 build_input += files(entitlements)
3464 install_input += meson.current_source_dir() / entitlements
3465 endif
3466
8a74ce61 3467 emulators += {exe['name'] : custom_target(exe['name'],
411ad8dd 3468 input: build_input,
8a74ce61 3469 output: exe['name'],
235b523d 3470 command: [entitlement, '@OUTPUT@', '@INPUT@'])
8a74ce61 3471 }
237377ac 3472
235b523d 3473 meson.add_install_script(entitlement, '--install',
237377ac 3474 get_option('bindir') / exe['name'],
411ad8dd 3475 install_input)
8a74ce61
AG
3476 else
3477 emulators += {exe['name']: emulator}
3478 endif
10e1d263 3479
9c29b741 3480 if stap.found()
10e1d263 3481 foreach stp: [
bd5f973a
SH
3482 {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false},
3483 {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / exe['name'], 'install': true},
10e1d263
MAL
3484 {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true},
3485 {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true},
3486 ]
bd5f973a 3487 custom_target(exe['name'] + stp['ext'],
10e1d263 3488 input: trace_events_all,
bd5f973a 3489 output: exe['name'] + stp['ext'],
10e1d263 3490 install: stp['install'],
16bf7a33 3491 install_dir: get_option('datadir') / 'systemtap/tapset',
10e1d263
MAL
3492 command: [
3493 tracetool, '--group=all', '--format=' + stp['fmt'],
3494 '--binary=' + stp['bin'],
3495 '--target-name=' + target_name,
3496 '--target-type=' + target_type,
3497 '--probe-prefix=qemu.' + target_type + '.' + target_name,
c05012a3 3498 '@INPUT@', '@OUTPUT@'
0572d6cd
SH
3499 ],
3500 depend_files: tracetool_depends)
10e1d263
MAL
3501 endforeach
3502 endif
64ed6f92 3503 endforeach
2becc36a
PB
3504endforeach
3505
931049b4 3506# Other build targets
897b5afa 3507
f556b4a1
PB
3508if 'CONFIG_PLUGIN' in config_host
3509 install_headers('include/qemu/qemu-plugin.h')
3510endif
3511
20cf5cb4 3512subdir('qga')
f15bff25 3513
9755c94a
LV
3514# Don't build qemu-keymap if xkbcommon is not explicitly enabled
3515# when we don't build tools or system
4113f4cf 3516if xkbcommon.found()
28742467
MAL
3517 # used for the update-keymaps target, so include rules even if !have_tools
3518 qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh,
3519 dependencies: [qemuutil, xkbcommon], install: have_tools)
3520endif
3521
931049b4 3522if have_tools
b7c70bf2
MAL
3523 qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep],
3524 dependencies: [authz, block, crypto, io, qom, qemuutil], install: true)
3525 qemu_io = executable('qemu-io', files('qemu-io.c'),
3526 dependencies: [block, qemuutil], install: true)
eb705985 3527 qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'),
3d212b41
RJ
3528 dependencies: [blockdev, qemuutil, gnutls, selinux],
3529 install: true)
b7c70bf2 3530
7c58bb76 3531 subdir('storage-daemon')
a9c9727c 3532 subdir('contrib/rdmacm-mux')
1d7bb6ab 3533 subdir('contrib/elf2dmp')
a9c9727c 3534
157e7b13
MAL
3535 executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'),
3536 dependencies: qemuutil,
3537 install: true)
3538
931049b4 3539 if 'CONFIG_VHOST_USER' in config_host
2d7ac0af 3540 subdir('contrib/vhost-user-blk')
b7612f45 3541 subdir('contrib/vhost-user-gpu')
32fcc624 3542 subdir('contrib/vhost-user-input')
99650b62 3543 subdir('contrib/vhost-user-scsi')
931049b4 3544 endif
8f51e01c
MAL
3545
3546 if targetos == 'linux'
3547 executable('qemu-bridge-helper', files('qemu-bridge-helper.c'),
3548 dependencies: [qemuutil, libcap_ng],
3549 install: true,
3550 install_dir: get_option('libexecdir'))
897b5afa
MAL
3551
3552 executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'),
3553 dependencies: [authz, crypto, io, qom, qemuutil,
6ec0e15d 3554 libcap_ng, mpathpersist],
897b5afa 3555 install: true)
8f51e01c
MAL
3556 endif
3557
ccd250aa 3558 if have_ivshmem
5ee24e78
MAL
3559 subdir('contrib/ivshmem-client')
3560 subdir('contrib/ivshmem-server')
3561 endif
931049b4
PB
3562endif
3563
f5aa6320 3564subdir('scripts')
3f99cf57 3565subdir('tools')
bdcbea7a 3566subdir('pc-bios')
f8aa24ea 3567subdir('docs')
e3667660 3568subdir('tests')
1b695471 3569if gtk.found()
e8f3bd71
MAL
3570 subdir('po')
3571endif
3f99cf57 3572
8adfeba9
MAL
3573if host_machine.system() == 'windows'
3574 nsis_cmd = [
3575 find_program('scripts/nsis.py'),
3576 '@OUTPUT@',
3577 get_option('prefix'),
3578 meson.current_source_dir(),
24bdcc96 3579 host_machine.cpu(),
8adfeba9
MAL
3580 '--',
3581 '-DDISPLAYVERSION=' + meson.project_version(),
3582 ]
3583 if build_docs
3584 nsis_cmd += '-DCONFIG_DOCUMENTATION=y'
3585 endif
1b695471 3586 if gtk.found()
8adfeba9
MAL
3587 nsis_cmd += '-DCONFIG_GTK=y'
3588 endif
3589
3590 nsis = custom_target('nsis',
3591 output: 'qemu-setup-' + meson.project_version() + '.exe',
3592 input: files('qemu.nsi'),
3593 build_always_stale: true,
3594 command: nsis_cmd + ['@INPUT@'])
3595 alias_target('installer', nsis)
3596endif
3597
a0c9162c
PB
3598#########################
3599# Configuration summary #
3600#########################
3601
983d0a75 3602# Directories
f9332757 3603summary_info = {}
16bf7a33
PB
3604summary_info += {'Install prefix': get_option('prefix')}
3605summary_info += {'BIOS directory': qemu_datadir}
3606summary_info += {'firmware path': get_option('qemu_firmwarepath')}
3607summary_info += {'binary directory': get_option('bindir')}
3608summary_info += {'library directory': get_option('libdir')}
3609summary_info += {'module directory': qemu_moddir}
3610summary_info += {'libexec directory': get_option('libexecdir')}
3611summary_info += {'include directory': get_option('includedir')}
3612summary_info += {'config directory': get_option('sysconfdir')}
f9332757 3613if targetos != 'windows'
16bf7a33 3614 summary_info += {'local state directory': get_option('localstatedir')}
b81efab7 3615 summary_info += {'Manual directory': get_option('mandir')}
f9332757
PB
3616else
3617 summary_info += {'local state directory': 'queried at runtime'}
3618endif
491e74c1 3619summary_info += {'Doc directory': get_option('docdir')}
f9332757
PB
3620summary_info += {'Build directory': meson.current_build_dir()}
3621summary_info += {'Source path': meson.current_source_dir()}
f9332757 3622summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']}
983d0a75
PMD
3623summary(summary_info, bool_yn: true, section: 'Directories')
3624
e11a0e17
PMD
3625# Host binaries
3626summary_info = {}
3627summary_info += {'git': config_host['GIT']}
3628summary_info += {'make': config_host['MAKE']}
3629summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())}
bb647c49 3630summary_info += {'sphinx-build': sphinx_build}
e11a0e17
PMD
3631if config_host.has_key('HAVE_GDB_BIN')
3632 summary_info += {'gdb': config_host['HAVE_GDB_BIN']}
3633endif
5dc4618e
PB
3634if get_option('iasl') != ''
3635 summary_info += {'iasl': get_option('iasl')}
3636else
3637 summary_info += {'iasl': false}
3638endif
e11a0e17 3639summary_info += {'genisoimage': config_host['GENISOIMAGE']}
20cf5cb4 3640if targetos == 'windows' and have_ga
bb647c49 3641 summary_info += {'wixl': wixl}
e11a0e17 3642endif
35acbb30
PB
3643if slirp_opt != 'disabled' and have_system
3644 summary_info += {'smbd': have_slirp_smbd ? smbd_path : false}
e11a0e17
PMD
3645endif
3646summary(summary_info, bool_yn: true, section: 'Host binaries')
3647
1d718865
PMD
3648# Configurable features
3649summary_info = {}
3650summary_info += {'Documentation': build_docs}
aa3ca634
PMD
3651summary_info += {'system-mode emulation': have_system}
3652summary_info += {'user-mode emulation': have_user}
813803aa 3653summary_info += {'block layer': have_block}
1d718865
PMD
3654summary_info += {'Install blobs': get_option('install_blobs')}
3655summary_info += {'module support': config_host.has_key('CONFIG_MODULES')}
3656if config_host.has_key('CONFIG_MODULES')
2cb2f580 3657 summary_info += {'alternative module path': get_option('module_upgrades')}
1d718865 3658endif
537b7248 3659summary_info += {'fuzzing support': get_option('fuzzing')}
1d718865 3660if have_system
87430d5b 3661 summary_info += {'Audio drivers': ' '.join(audio_drivers_selected)}
1d718865 3662endif
9c29b741
PB
3663summary_info += {'Trace backends': ','.join(get_option('trace_backends'))}
3664if 'simple' in get_option('trace_backends')
3665 summary_info += {'Trace output file': get_option('trace_file') + '-<pid>'}
1d718865 3666endif
142ca628 3667summary_info += {'D-Bus display': dbus_display}
c55cf6ab 3668summary_info += {'QOM debugging': get_option('qom_cast_debug')}
1d718865
PMD
3669summary_info += {'vhost-kernel support': config_host.has_key('CONFIG_VHOST_KERNEL')}
3670summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')}
3671summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')}
3672summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')}
3673summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')}
3674summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_USER')}
3675summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server}
3676summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')}
3677summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')}
20cf5cb4 3678summary_info += {'build guest agent': have_ga}
1d718865
PMD
3679summary(summary_info, bool_yn: true, section: 'Configurable features')
3680
2e864b8b 3681# Compilation information
983d0a75 3682summary_info = {}
2e864b8b
PMD
3683summary_info += {'host CPU': cpu}
3684summary_info += {'host endianness': build_machine.endian()}
63de9353
AB
3685summary_info += {'C compiler': ' '.join(meson.get_compiler('c').cmd_array())}
3686summary_info += {'Host C compiler': ' '.join(meson.get_compiler('c', native: true).cmd_array())}
f9332757 3687if link_language == 'cpp'
63de9353 3688 summary_info += {'C++ compiler': ' '.join(meson.get_compiler('cpp').cmd_array())}
f9332757
PB
3689else
3690 summary_info += {'C++ compiler': false}
3691endif
3692if targetos == 'darwin'
63de9353 3693 summary_info += {'Objective-C compiler': ' '.join(meson.get_compiler('objc').cmd_array())}
f9332757 3694endif
47b30835
PB
3695summary_info += {'CFLAGS': ' '.join(get_option('c_args')
3696 + ['-O' + get_option('optimization')]
3697 + (get_option('debug') ? ['-g'] : []))}
3698if link_language == 'cpp'
3699 summary_info += {'CXXFLAGS': ' '.join(get_option('cpp_args')
3700 + ['-O' + get_option('optimization')]
3701 + (get_option('debug') ? ['-g'] : []))}
3702endif
e910c7d9
PMD
3703if targetos == 'darwin'
3704 summary_info += {'OBJCFLAGS': ' '.join(get_option('objc_args')
3705 + ['-O' + get_option('optimization')]
3706 + (get_option('debug') ? ['-g'] : []))}
3707endif
47b30835
PB
3708link_args = get_option(link_language + '_link_args')
3709if link_args.length() > 0
3710 summary_info += {'LDFLAGS': ' '.join(link_args)}
3711endif
d065177e
PB
3712summary_info += {'QEMU_CFLAGS': ' '.join(qemu_cflags)}
3713summary_info += {'QEMU_CXXFLAGS': ' '.join(qemu_cxxflags)}
3714summary_info += {'QEMU_OBJCFLAGS': ' '.join(qemu_objcflags)}
3715summary_info += {'QEMU_LDFLAGS': ' '.join(qemu_ldflags)}
c55cf6ab 3716summary_info += {'profiler': get_option('profiler')}
cdad781d 3717summary_info += {'link-time optimization (LTO)': get_option('b_lto')}
2e864b8b 3718summary_info += {'PIE': get_option('b_pie')}
3e8529dd 3719summary_info += {'static build': config_host.has_key('CONFIG_STATIC')}
2e864b8b 3720summary_info += {'malloc trim support': has_malloc_trim}
b87df904 3721summary_info += {'membarrier': have_membarrier}
728c0a2f 3722summary_info += {'debug stack usage': get_option('debug_stack_usage')}
c55cf6ab 3723summary_info += {'mutex debugging': get_option('debug_mutex')}
2e864b8b 3724summary_info += {'memory allocator': get_option('malloc')}
622753d2
PB
3725summary_info += {'avx2 optimization': config_host_data.get('CONFIG_AVX2_OPT')}
3726summary_info += {'avx512f optimization': config_host_data.get('CONFIG_AVX512F_OPT')}
c55cf6ab 3727summary_info += {'gprof enabled': get_option('gprof')}
2e864b8b
PMD
3728summary_info += {'gcov': get_option('b_coverage')}
3729summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')}
3730summary_info += {'CFI support': get_option('cfi')}
3731if get_option('cfi')
3732 summary_info += {'CFI debug support': get_option('cfi_debug')}
3733endif
3734summary_info += {'strip binaries': get_option('strip')}
bb647c49 3735summary_info += {'sparse': sparse}
2e864b8b 3736summary_info += {'mingw32 support': targetos == 'windows'}
49e8565b
AB
3737
3738# snarf the cross-compilation information for tests
3739foreach target: target_dirs
3740 tcg_mak = meson.current_build_dir() / 'tests/tcg' / 'config-' + target + '.mak'
3741 if fs.exists(tcg_mak)
3742 config_cross_tcg = keyval.load(tcg_mak)
3743 target = config_cross_tcg['TARGET_NAME']
3744 compiler = ''
3745 if 'DOCKER_CROSS_CC_GUEST' in config_cross_tcg
3746 summary_info += {target + ' tests': config_cross_tcg['DOCKER_CROSS_CC_GUEST'] +
3747 ' via ' + config_cross_tcg['DOCKER_IMAGE']}
3748 elif 'CROSS_CC_GUEST' in config_cross_tcg
3749 summary_info += {target + ' tests'
3750 : config_cross_tcg['CROSS_CC_GUEST'] }
3751 endif
3752 endif
3753endforeach
3754
2e864b8b
PMD
3755summary(summary_info, bool_yn: true, section: 'Compilation')
3756
aa3ca634 3757# Targets and accelerators
2e864b8b 3758summary_info = {}
aa3ca634
PMD
3759if have_system
3760 summary_info += {'KVM support': config_all.has_key('CONFIG_KVM')}
3761 summary_info += {'HAX support': config_all.has_key('CONFIG_HAX')}
3762 summary_info += {'HVF support': config_all.has_key('CONFIG_HVF')}
3763 summary_info += {'WHPX support': config_all.has_key('CONFIG_WHPX')}
74a414a1 3764 summary_info += {'NVMM support': config_all.has_key('CONFIG_NVMM')}
14efd8d3
PB
3765 summary_info += {'Xen support': xen.found()}
3766 if xen.found()
3767 summary_info += {'xen ctrl version': xen.version()}
aa3ca634
PMD
3768 endif
3769endif
3770summary_info += {'TCG support': config_all.has_key('CONFIG_TCG')}
3771if config_all.has_key('CONFIG_TCG')
39687aca 3772 if get_option('tcg_interpreter')
f1f727ac 3773 summary_info += {'TCG backend': 'TCI (TCG with bytecode interpreter, slow)'}
39687aca
PMD
3774 else
3775 summary_info += {'TCG backend': 'native (@0@)'.format(cpu)}
3776 endif
029aa68f 3777 summary_info += {'TCG plugins': config_host.has_key('CONFIG_PLUGIN')}
aa3ca634 3778 summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')}
aa3ca634 3779endif
2e864b8b 3780summary_info += {'target list': ' '.join(target_dirs)}
aa3ca634
PMD
3781if have_system
3782 summary_info += {'default devices': get_option('default_devices')}
106ad1f9 3783 summary_info += {'out of process emulation': multiprocess_allowed}
aa3ca634
PMD
3784endif
3785summary(summary_info, bool_yn: true, section: 'Targets and accelerators')
3786
813803aa
PMD
3787# Block layer
3788summary_info = {}
3789summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']}
728c0a2f 3790summary_info += {'coroutine pool': have_coroutine_pool}
813803aa
PMD
3791if have_block
3792 summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']}
3793 summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']}
c55cf6ab 3794 summary_info += {'Use block whitelist in tools': get_option('block_drv_whitelist_in_tools')}
813803aa
PMD
3795 summary_info += {'VirtFS support': have_virtfs}
3796 summary_info += {'build virtiofs daemon': have_virtiofsd}
406523f6
PB
3797 summary_info += {'Live block migration': config_host_data.get('CONFIG_LIVE_BLOCK_MIGRATION')}
3798 summary_info += {'replication support': config_host_data.get('CONFIG_REPLICATION')}
ed793c2c
PB
3799 summary_info += {'bochs support': get_option('bochs').allowed()}
3800 summary_info += {'cloop support': get_option('cloop').allowed()}
3801 summary_info += {'dmg support': get_option('dmg').allowed()}
3802 summary_info += {'qcow v1 support': get_option('qcow1').allowed()}
3803 summary_info += {'vdi support': get_option('vdi').allowed()}
3804 summary_info += {'vvfat support': get_option('vvfat').allowed()}
3805 summary_info += {'qed support': get_option('qed').allowed()}
3806 summary_info += {'parallels support': get_option('parallels').allowed()}
bb647c49 3807 summary_info += {'FUSE exports': fuse}
813803aa
PMD
3808endif
3809summary(summary_info, bool_yn: true, section: 'Block layer support')
3810
aa58028a 3811# Crypto
aa3ca634 3812summary_info = {}
f9332757 3813summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']}
bb647c49
PB
3814summary_info += {'GNUTLS support': gnutls}
3815if gnutls.found()
3816 summary_info += {' GNUTLS crypto': gnutls_crypto.found()}
3817endif
3818summary_info += {'libgcrypt': gcrypt}
3819summary_info += {'nettle': nettle}
57612511
PB
3820if nettle.found()
3821 summary_info += {' XTS': xts != 'private'}
f9332757 3822endif
34b52615 3823summary_info += {'AF_ALG support': have_afalg}
c55cf6ab 3824summary_info += {'rng-none': get_option('rng_none')}
2edd2c04 3825summary_info += {'Linux keyring': have_keyring}
aa58028a
PMD
3826summary(summary_info, bool_yn: true, section: 'Crypto')
3827
69a78cce 3828# Libraries
aa58028a
PMD
3829summary_info = {}
3830if targetos == 'darwin'
bb647c49
PB
3831 summary_info += {'Cocoa support': cocoa}
3832endif
3833summary_info += {'SDL support': sdl}
3834summary_info += {'SDL image support': sdl_image}
3835summary_info += {'GTK support': gtk}
3836summary_info += {'pixman': pixman}
3837summary_info += {'VTE support': vte}
3838summary_info += {'slirp support': slirp_opt == 'internal' ? slirp_opt : slirp}
3839summary_info += {'libtasn1': tasn1}
3840summary_info += {'PAM': pam}
3841summary_info += {'iconv support': iconv}
3842summary_info += {'curses support': curses}
3843summary_info += {'virgl support': virgl}
3844summary_info += {'curl support': curl}
3845summary_info += {'Multipath support': mpathpersist}
95f8510e 3846summary_info += {'PNG support': png}
bb647c49 3847summary_info += {'VNC support': vnc}
a0b93237 3848if vnc.found()
bb647c49
PB
3849 summary_info += {'VNC SASL support': sasl}
3850 summary_info += {'VNC JPEG support': jpeg}
f9332757 3851endif
87430d5b
PB
3852if targetos not in ['darwin', 'haiku', 'windows']
3853 summary_info += {'OSS support': oss}
3854elif targetos == 'darwin'
3855 summary_info += {'CoreAudio support': coreaudio}
3856elif targetos == 'windows'
3857 summary_info += {'DirectSound support': dsound}
3858endif
3859if targetos == 'linux'
3860 summary_info += {'ALSA support': alsa}
3861 summary_info += {'PulseAudio support': pulse}
3862endif
3863summary_info += {'JACK support': jack}
bb647c49 3864summary_info += {'brlapi support': brlapi}
e1723999 3865summary_info += {'vde support': vde}
837b84b1 3866summary_info += {'netmap support': have_netmap}
eea9453a 3867summary_info += {'l2tpv3 support': have_l2tpv3}
ff66f3e5 3868summary_info += {'Linux AIO support': libaio}
bb647c49
PB
3869summary_info += {'Linux io_uring support': linux_io_uring}
3870summary_info += {'ATTR/XATTR support': libattr}
3730a734
PB
3871summary_info += {'RDMA support': rdma}
3872summary_info += {'PVRDMA support': have_pvrdma}
fbb4121d 3873summary_info += {'fdt support': fdt_opt == 'disabled' ? false : fdt_opt}
bb647c49
PB
3874summary_info += {'libcap-ng support': libcap_ng}
3875summary_info += {'bpf support': libbpf}
3f0a5d55
MAL
3876summary_info += {'spice protocol support': spice_protocol}
3877if spice_protocol.found()
3878 summary_info += {' spice server support': spice}
3879endif
bb647c49 3880summary_info += {'rbd support': rbd}
bb647c49
PB
3881summary_info += {'smartcard support': cacard}
3882summary_info += {'U2F support': u2f}
3883summary_info += {'libusb': libusb}
3884summary_info += {'usb net redir': usbredir}
88b6e618 3885summary_info += {'OpenGL support (epoxy)': opengl}
bb647c49
PB
3886summary_info += {'GBM': gbm}
3887summary_info += {'libiscsi support': libiscsi}
3888summary_info += {'libnfs support': libnfs}
f9332757 3889if targetos == 'windows'
20cf5cb4 3890 if have_ga
8821a389 3891 summary_info += {'QGA VSS support': have_qga_vss}
b846ab7c 3892 endif
f9332757 3893endif
bb647c49
PB
3894summary_info += {'seccomp support': seccomp}
3895summary_info += {'GlusterFS support': glusterfs}
0d04c4c9 3896summary_info += {'TPM support': have_tpm}
e6a52b36 3897summary_info += {'libssh support': libssh}
bb647c49
PB
3898summary_info += {'lzo support': lzo}
3899summary_info += {'snappy support': snappy}
3900summary_info += {'bzip2 support': libbzip2}
3901summary_info += {'lzfse support': liblzfse}
3902summary_info += {'zstd support': zstd}
488a8c73 3903summary_info += {'NUMA host support': numa}
bb647c49
PB
3904summary_info += {'capstone': capstone_opt == 'internal' ? capstone_opt : capstone}
3905summary_info += {'libpmem support': libpmem}
3906summary_info += {'libdaxctl support': libdaxctl}
3907summary_info += {'libudev': libudev}
3908# Dummy dependency, keep .found()
df4ea709 3909summary_info += {'FUSE lseek': fuse_lseek.found()}
3d212b41 3910summary_info += {'selinux': selinux}
69a78cce 3911summary(summary_info, bool_yn: true, section: 'Dependencies')
f9332757
PB
3912
3913if not supported_cpus.contains(cpu)
3914 message()
3915 warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!')
3916 message()
3917 message('CPU host architecture ' + cpu + ' support is not currently maintained.')
3918 message('The QEMU project intends to remove support for this host CPU in')
3919 message('a future release if nobody volunteers to maintain it and to')
3920 message('provide a build host for our continuous integration setup.')
3921 message('configure has succeeded and you can continue to build, but')
3922 message('if you care about QEMU on this platform you should contact')
3923 message('us upstream at qemu-devel@nongnu.org.')
3924endif
3925
3926if not supported_oses.contains(targetos)
3927 message()
3928 warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!')
3929 message()
3930 message('Host OS ' + targetos + 'support is not currently maintained.')
3931 message('The QEMU project intends to remove support for this host OS in')
3932 message('a future release if nobody volunteers to maintain it and to')
3933 message('provide a build host for our continuous integration setup.')
3934 message('configure has succeeded and you can continue to build, but')
3935 message('if you care about QEMU on this platform you should contact')
3936 message('us upstream at qemu-devel@nongnu.org.')
3937endif