blob: 94ef023ad1580a5b04244aeeb3b9ebc3493bc183 [file] [log] [blame]
Paolo Bonzinia5665052019-06-10 12:05:14 +02001project('qemu', ['c'], meson_version: '>=0.55.0',
Paolo Bonzinia5cb7c52020-10-19 06:56:16 -04002 default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11', 'b_colorout=auto'] +
3 (meson.version().version_compare('>=0.56.0') ? [ 'b_staticpic=false' ] : []),
Paolo Bonzinia5665052019-06-10 12:05:14 +02004 version: run_command('head', meson.source_root() / 'VERSION').stdout().strip())
5
6not_found = dependency('', required: false)
Paolo Bonzinib29b40f2020-08-10 18:04:43 +02007if meson.version().version_compare('>=0.56.0')
8 keyval = import('keyval')
9else
10 keyval = import('unstable-keyval')
11endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -040012ss = import('sourceset')
Richard Henderson8b18cdb2020-09-13 12:19:25 -070013fs = import('fs')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -040014
Paolo Bonzinice1c1e72020-01-28 16:41:44 +010015sh = find_program('sh')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -040016cc = meson.get_compiler('c')
Paolo Bonzinia5665052019-06-10 12:05:14 +020017config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
Marc-André Lureau3154fee2019-08-29 22:07:01 +040018enable_modules = 'CONFIG_MODULES' in config_host
Paolo Bonzini35be72b2020-02-06 14:17:15 +010019enable_static = 'CONFIG_STATIC' in config_host
Yonggang Luoe3667662020-10-16 06:06:25 +080020
21# Temporary directory used for files created while
22# configure runs. Since it is in the build directory
23# we can safely blow away any previous version of it
24# (and we need not jump through hoops to try to delete
25# it when configure exits.)
26tmpdir = meson.current_build_dir() / 'meson-private/temp'
Marc-André Lureau8fe11232020-09-11 14:42:48 +020027
28if get_option('qemu_suffix').startswith('/')
29 error('qemu_suffix cannot start with a /')
30endif
31
Paolo Bonzini16bf7a32020-10-16 03:19:14 -040032qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix')
Marc-André Lureauab4c0992020-08-26 15:04:16 +040033qemu_datadir = get_option('datadir') / get_option('qemu_suffix')
Marc-André Lureau491e74c2020-08-26 15:04:17 +040034qemu_docdir = get_option('docdir') / get_option('qemu_suffix')
Paolo Bonzini16bf7a32020-10-16 03:19:14 -040035qemu_moddir = get_option('libdir') / get_option('qemu_suffix')
36
37qemu_desktopdir = get_option('datadir') / 'applications'
38qemu_icondir = get_option('datadir') / 'icons'
39
Paolo Bonzini859aef02020-08-04 18:14:26 +020040config_host_data = configuration_data()
41genh = []
Paolo Bonzinia5665052019-06-10 12:05:14 +020042
Paolo Bonzini760e4322020-08-26 08:09:48 +020043target_dirs = config_host['TARGET_DIRS'].split()
44have_user = false
45have_system = false
46foreach target : target_dirs
47 have_user = have_user or target.endswith('-user')
48 have_system = have_system or target.endswith('-softmmu')
49endforeach
50have_tools = 'CONFIG_TOOLS' in config_host
51have_block = have_system or have_tools
52
Paolo Bonzini201e8ed2020-09-01 07:45:54 -040053python = import('python').find_installation()
54
55supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
Sergei Trofimovich61256732020-10-12 18:57:19 +010056supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
Paolo Bonzini201e8ed2020-09-01 07:45:54 -040057 'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64']
58
59cpu = host_machine.cpu_family()
60targetos = host_machine.system()
61
Paolo Bonzini8a199802020-09-18 05:37:01 -040062if cpu in ['x86', 'x86_64']
63 kvm_targets = ['i386-softmmu', 'x86_64-softmmu']
64elif cpu == 'aarch64'
65 kvm_targets = ['aarch64-softmmu']
66elif cpu == 's390x'
67 kvm_targets = ['s390x-softmmu']
68elif cpu in ['ppc', 'ppc64']
69 kvm_targets = ['ppc-softmmu', 'ppc64-softmmu']
Huacai Chenfbc58842020-10-07 16:39:28 +080070elif cpu in ['mips', 'mips64']
71 kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu']
Paolo Bonzini8a199802020-09-18 05:37:01 -040072else
73 kvm_targets = []
74endif
75
76accelerator_targets = { 'CONFIG_KVM': kvm_targets }
Alex Bennée0c3e41d2020-11-10 19:23:09 +000077if cpu in ['x86', 'x86_64', 'arm', 'aarch64']
78 # i368 emulator provides xenpv machine type for multiple architectures
79 accelerator_targets += {
80 'CONFIG_XEN': ['i386-softmmu', 'x86_64-softmmu'],
81 }
82endif
Paolo Bonzini8a199802020-09-18 05:37:01 -040083if cpu in ['x86', 'x86_64']
84 accelerator_targets += {
85 'CONFIG_HAX': ['i386-softmmu', 'x86_64-softmmu'],
Paolo Bonzini8a199802020-09-18 05:37:01 -040086 'CONFIG_HVF': ['x86_64-softmmu'],
87 'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'],
88 }
89endif
90
Paolo Bonzini201e8ed2020-09-01 07:45:54 -040091##################
92# Compiler flags #
93##################
94
Alexander Bulekovff9ed622020-09-09 18:05:16 -040095# Specify linker-script with add_project_link_arguments so that it is not placed
96# within a linker --start-group/--end-group pair
97if 'CONFIG_FUZZ' in config_host
98 add_project_link_arguments(['-Wl,-T,',
99 (meson.current_source_dir() / 'tests/qtest/fuzz/fork_fuzz.ld')],
100 native: false, language: ['c', 'cpp', 'objc'])
101endif
102
Paolo Bonzinia5665052019-06-10 12:05:14 +0200103add_project_arguments(config_host['QEMU_CFLAGS'].split(),
104 native: false, language: ['c', 'objc'])
105add_project_arguments(config_host['QEMU_CXXFLAGS'].split(),
106 native: false, language: 'cpp')
107add_project_link_arguments(config_host['QEMU_LDFLAGS'].split(),
108 native: false, language: ['c', 'cpp', 'objc'])
Paolo Bonzinia5665052019-06-10 12:05:14 +0200109
Paolo Bonzini1e6e6162020-10-14 08:45:42 -0400110if targetos == 'linux'
111 add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers',
112 '-isystem', 'linux-headers',
113 language: ['c', 'cpp'])
114endif
115
116if 'CONFIG_TCG_INTERPRETER' in config_host
117 tcg_arch = 'tci'
118elif config_host['ARCH'] == 'sparc64'
119 tcg_arch = 'sparc'
120elif config_host['ARCH'] == 's390x'
121 tcg_arch = 's390'
122elif config_host['ARCH'] in ['x86_64', 'x32']
123 tcg_arch = 'i386'
124elif config_host['ARCH'] == 'ppc64'
125 tcg_arch = 'ppc'
126elif config_host['ARCH'] in ['riscv32', 'riscv64']
127 tcg_arch = 'riscv'
128else
129 tcg_arch = config_host['ARCH']
130endif
131add_project_arguments('-iquote', meson.current_source_dir() / 'tcg' / tcg_arch,
132 '-iquote', '.',
133 '-iquote', meson.current_source_dir(),
134 '-iquote', meson.current_source_dir() / 'accel/tcg',
135 '-iquote', meson.current_source_dir() / 'include',
136 '-iquote', meson.current_source_dir() / 'disas/libvixl',
137 language: ['c', 'cpp', 'objc'])
Alexander Bulekovc46f76d2020-09-02 13:36:50 -0400138
Marc-André Lureaufc929892019-07-13 01:47:54 +0400139link_language = meson.get_external_property('link_language', 'cpp')
140if link_language == 'cpp'
141 add_languages('cpp', required: true, native: false)
142endif
Paolo Bonzinia5665052019-06-10 12:05:14 +0200143if host_machine.system() == 'darwin'
144 add_languages('objc', required: false, native: false)
145endif
146
Paolo Bonzinideb62372020-09-01 07:51:16 -0400147sparse = find_program('cgcc', required: get_option('sparse'))
148if sparse.found()
Paolo Bonzini968b4db2020-02-03 14:45:33 +0100149 run_target('sparse',
150 command: [find_program('scripts/check_sparse.py'),
Paolo Bonzinideb62372020-09-01 07:51:16 -0400151 'compile_commands.json', sparse.full_path(), '-Wbitwise',
152 '-Wno-transparent-union', '-Wno-old-initializer',
153 '-Wno-non-pointer-null'])
Paolo Bonzini968b4db2020-02-03 14:45:33 +0100154endif
155
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200156###########################################
157# Target-specific checks and dependencies #
158###########################################
159
160if targetos != 'linux' and get_option('mpath').enabled()
161 error('Multipath is supported only on Linux')
162endif
163
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400164m = cc.find_library('m', required: false)
165util = cc.find_library('util', required: false)
Paolo Bonzini4a963372020-08-03 16:22:28 +0200166winmm = []
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400167socket = []
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +0400168version_res = []
Marc-André Lureaud92989a2019-08-20 19:48:59 +0400169coref = []
170iokit = []
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -0400171emulator_link_args = []
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400172cocoa = not_found
Paolo Bonzini8a199802020-09-18 05:37:01 -0400173hvf = not_found
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400174if targetos == 'windows'
175 socket = cc.find_library('ws2_32')
Paolo Bonzini4a963372020-08-03 16:22:28 +0200176 winmm = cc.find_library('winmm')
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +0400177
178 win = import('windows')
179 version_res = win.compile_resources('version.rc',
180 depend_files: files('pc-bios/qemu-nsis.ico'),
181 include_directories: include_directories('.'))
Marc-André Lureaud92989a2019-08-20 19:48:59 +0400182elif targetos == 'darwin'
183 coref = dependency('appleframeworks', modules: 'CoreFoundation')
184 iokit = dependency('appleframeworks', modules: 'IOKit')
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400185 cocoa = dependency('appleframeworks', modules: 'Cocoa', required: get_option('cocoa'))
Paolo Bonzinicfad62f2020-08-09 23:47:45 +0200186elif targetos == 'sunos'
187 socket = [cc.find_library('socket'),
188 cc.find_library('nsl'),
189 cc.find_library('resolv')]
190elif targetos == 'haiku'
191 socket = [cc.find_library('posix_error_mapper'),
192 cc.find_library('network'),
193 cc.find_library('bsd')]
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -0400194elif targetos == 'openbsd'
195 if not get_option('tcg').disabled() and target_dirs.length() > 0
196 # Disable OpenBSD W^X if available
197 emulator_link_args = cc.get_supported_link_arguments('-Wl,-z,wxneeded')
198 endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400199endif
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200200
Paolo Bonzini8a199802020-09-18 05:37:01 -0400201accelerators = []
202if not get_option('kvm').disabled() and targetos == 'linux'
203 accelerators += 'CONFIG_KVM'
204endif
205if not get_option('xen').disabled() and 'CONFIG_XEN_BACKEND' in config_host
206 accelerators += 'CONFIG_XEN'
207 have_xen_pci_passthrough = not get_option('xen_pci_passthrough').disabled() and targetos == 'linux'
208else
209 have_xen_pci_passthrough = false
210endif
211if not get_option('whpx').disabled() and targetos == 'windows'
Sunil Muthuswamy57e2a1f2020-10-22 00:27:55 +0000212 if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64'
Paolo Bonzini8a199802020-09-18 05:37:01 -0400213 error('WHPX requires 64-bit host')
214 elif cc.has_header('WinHvPlatform.h', required: get_option('whpx')) and \
215 cc.has_header('WinHvEmulation.h', required: get_option('whpx'))
216 accelerators += 'CONFIG_WHPX'
217 endif
218endif
219if not get_option('hvf').disabled()
220 hvf = dependency('appleframeworks', modules: 'Hypervisor',
221 required: get_option('hvf'))
222 if hvf.found()
223 accelerators += 'CONFIG_HVF'
224 endif
225endif
226if not get_option('hax').disabled()
227 if get_option('hax').enabled() or targetos in ['windows', 'darwin', 'netbsd']
228 accelerators += 'CONFIG_HAX'
229 endif
230endif
231if not get_option('tcg').disabled()
232 if cpu not in supported_cpus
233 if 'CONFIG_TCG_INTERPRETER' in config_host
234 warning('Unsupported CPU @0@, will use TCG with TCI (experimental)'.format(cpu))
235 else
236 error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
237 endif
238 endif
239 accelerators += 'CONFIG_TCG'
240 config_host += { 'CONFIG_TCG': 'y' }
241endif
242
243if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled()
244 error('KVM not available on this platform')
245endif
246if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled()
247 error('HVF not available on this platform')
248endif
249if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled()
250 error('WHPX not available on this platform')
251endif
252if not have_xen_pci_passthrough and get_option('xen_pci_passthrough').enabled()
253 if 'CONFIG_XEN' in accelerators
254 error('Xen PCI passthrough not available on this platform')
255 else
256 error('Xen PCI passthrough requested but Xen not enabled')
257 endif
258endif
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400259if not cocoa.found() and get_option('cocoa').enabled()
260 error('Cocoa not available on this platform')
261endif
262
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200263################
264# Dependencies #
265################
266
Paolo Bonzini215b0c22020-09-01 08:41:17 -0400267# The path to glib.h is added to all compilation commands. This was
268# grandfathered in from the QEMU Makefiles.
269add_project_arguments(config_host['GLIB_CFLAGS'].split(),
270 native: false, language: ['c', 'cpp', 'objc'])
271glib = declare_dependency(link_args: config_host['GLIB_LIBS'].split())
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400272gio = not_found
273if 'CONFIG_GIO' in config_host
274 gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(),
275 link_args: config_host['GIO_LIBS'].split())
276endif
277lttng = not_found
278if 'CONFIG_TRACE_UST' in config_host
279 lttng = declare_dependency(link_args: config_host['LTTNG_UST_LIBS'].split())
280endif
281urcubp = not_found
282if 'CONFIG_TRACE_UST' in config_host
283 urcubp = declare_dependency(link_args: config_host['URCU_BP_LIBS'].split())
284endif
Daniel P. Berrangé46859d92020-09-01 14:30:49 +0100285gcrypt = not_found
286if 'CONFIG_GCRYPT' in config_host
287 gcrypt = declare_dependency(compile_args: config_host['GCRYPT_CFLAGS'].split(),
288 link_args: config_host['GCRYPT_LIBS'].split())
289endif
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400290nettle = not_found
291if 'CONFIG_NETTLE' in config_host
292 nettle = declare_dependency(compile_args: config_host['NETTLE_CFLAGS'].split(),
293 link_args: config_host['NETTLE_LIBS'].split())
294endif
295gnutls = not_found
296if 'CONFIG_GNUTLS' in config_host
297 gnutls = declare_dependency(compile_args: config_host['GNUTLS_CFLAGS'].split(),
298 link_args: config_host['GNUTLS_LIBS'].split())
299endif
Paolo Bonzinib7612f42020-08-26 08:22:58 +0200300pixman = not_found
301if have_system or have_tools
302 pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8',
Paolo Bonzini1a949332020-08-31 06:27:00 -0400303 method: 'pkg-config', static: enable_static)
Paolo Bonzinib7612f42020-08-26 08:22:58 +0200304endif
Marc-André Lureau5e7fbd22019-07-15 22:54:34 +0400305pam = not_found
306if 'CONFIG_AUTH_PAM' in config_host
307 pam = cc.find_library('pam')
308endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400309libaio = cc.find_library('aio', required: false)
Paolo Bonzini1ffb3bb2020-08-28 19:33:54 +0200310zlib = dependency('zlib', required: true, static: enable_static)
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400311linux_io_uring = not_found
312if 'CONFIG_LINUX_IO_URING' in config_host
313 linux_io_uring = declare_dependency(compile_args: config_host['LINUX_IO_URING_CFLAGS'].split(),
314 link_args: config_host['LINUX_IO_URING_LIBS'].split())
315endif
316libxml2 = not_found
317if 'CONFIG_LIBXML2' in config_host
318 libxml2 = declare_dependency(compile_args: config_host['LIBXML2_CFLAGS'].split(),
319 link_args: config_host['LIBXML2_LIBS'].split())
320endif
321libnfs = not_found
322if 'CONFIG_LIBNFS' in config_host
323 libnfs = declare_dependency(link_args: config_host['LIBNFS_LIBS'].split())
324endif
Marc-André Lureauec0d5892019-07-15 15:04:49 +0400325libattr = not_found
326if 'CONFIG_ATTR' in config_host
327 libattr = declare_dependency(link_args: config_host['LIBATTR_LIBS'].split())
328endif
Paolo Bonzini3f99cf52020-02-05 09:45:39 +0100329seccomp = not_found
330if 'CONFIG_SECCOMP' in config_host
331 seccomp = declare_dependency(compile_args: config_host['SECCOMP_CFLAGS'].split(),
332 link_args: config_host['SECCOMP_LIBS'].split())
333endif
334libcap_ng = not_found
335if 'CONFIG_LIBCAP_NG' in config_host
336 libcap_ng = declare_dependency(link_args: config_host['LIBCAP_NG_LIBS'].split())
337endif
Paolo Bonzini1917ec62020-08-26 03:24:11 -0400338if get_option('xkbcommon').auto() and not have_system and not have_tools
339 xkbcommon = not_found
340else
341 xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'),
Paolo Bonzini1a949332020-08-31 06:27:00 -0400342 method: 'pkg-config', static: enable_static)
Marc-André Lureauade60d42019-07-15 14:48:31 +0400343endif
Marc-André Lureaucdaf0722019-07-22 23:47:50 +0400344vde = not_found
345if config_host.has_key('CONFIG_VDE')
346 vde = declare_dependency(link_args: config_host['VDE_LIBS'].split())
347endif
Paolo Bonzini478e9432020-08-17 12:47:55 +0200348pulse = not_found
349if 'CONFIG_LIBPULSE' in config_host
350 pulse = declare_dependency(compile_args: config_host['PULSE_CFLAGS'].split(),
351 link_args: config_host['PULSE_LIBS'].split())
352endif
353alsa = not_found
354if 'CONFIG_ALSA' in config_host
355 alsa = declare_dependency(compile_args: config_host['ALSA_CFLAGS'].split(),
356 link_args: config_host['ALSA_LIBS'].split())
357endif
358jack = not_found
359if 'CONFIG_LIBJACK' in config_host
360 jack = declare_dependency(link_args: config_host['JACK_LIBS'].split())
361endif
Paolo Bonzini26347332019-07-29 15:40:07 +0200362spice = not_found
Gerd Hoffmannd72c34c2020-10-14 14:11:18 +0200363spice_headers = not_found
Paolo Bonzini26347332019-07-29 15:40:07 +0200364if 'CONFIG_SPICE' in config_host
365 spice = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split(),
366 link_args: config_host['SPICE_LIBS'].split())
Gerd Hoffmannd72c34c2020-10-14 14:11:18 +0200367 spice_headers = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split())
Paolo Bonzini26347332019-07-29 15:40:07 +0200368endif
Marc-André Lureau5ee24e72019-07-12 23:16:54 +0400369rt = cc.find_library('rt', required: false)
Paolo Bonziniccf7afa2020-09-01 06:44:23 -0400370libdl = not_found
371if 'CONFIG_PLUGIN' in config_host
372 libdl = cc.find_library('dl', required: true)
373endif
Paolo Bonzini99650b62019-06-10 12:21:14 +0200374libiscsi = not_found
375if 'CONFIG_LIBISCSI' in config_host
376 libiscsi = declare_dependency(compile_args: config_host['LIBISCSI_CFLAGS'].split(),
377 link_args: config_host['LIBISCSI_LIBS'].split())
378endif
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400379zstd = not_found
380if 'CONFIG_ZSTD' in config_host
381 zstd = declare_dependency(compile_args: config_host['ZSTD_CFLAGS'].split(),
382 link_args: config_host['ZSTD_LIBS'].split())
383endif
Marc-André Lureauea458962019-07-12 22:23:46 +0400384gbm = not_found
385if 'CONFIG_GBM' in config_host
386 gbm = declare_dependency(compile_args: config_host['GBM_CFLAGS'].split(),
387 link_args: config_host['GBM_LIBS'].split())
388endif
389virgl = not_found
390if 'CONFIG_VIRGL' in config_host
391 virgl = declare_dependency(compile_args: config_host['VIRGL_CFLAGS'].split(),
392 link_args: config_host['VIRGL_LIBS'].split())
393endif
Marc-André Lureau1d7bb6a2019-07-12 23:47:06 +0400394curl = not_found
395if 'CONFIG_CURL' in config_host
396 curl = declare_dependency(compile_args: config_host['CURL_CFLAGS'].split(),
397 link_args: config_host['CURL_LIBS'].split())
398endif
Paolo Bonzinif15bff22019-07-18 13:19:02 +0200399libudev = not_found
Paolo Bonzinif01496a2020-09-16 17:54:14 +0200400if targetos == 'linux' and (have_system or have_tools)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200401 libudev = dependency('libudev',
Paolo Bonzini5c530152020-10-15 06:09:27 -0400402 required: get_option('libudev'),
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200403 static: enable_static)
Paolo Bonzinif15bff22019-07-18 13:19:02 +0200404endif
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200405
Paolo Bonzini5c530152020-10-15 06:09:27 -0400406mpathlibs = [libudev]
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200407mpathpersist = not_found
408mpathpersist_new_api = false
409if targetos == 'linux' and have_tools and not get_option('mpath').disabled()
410 mpath_test_source_new = '''
411 #include <libudev.h>
412 #include <mpath_persist.h>
413 unsigned mpath_mx_alloc_len = 1024;
414 int logsink;
415 static struct config *multipath_conf;
416 extern struct udev *udev;
417 extern struct config *get_multipath_config(void);
418 extern void put_multipath_config(struct config *conf);
419 struct udev *udev;
420 struct config *get_multipath_config(void) { return multipath_conf; }
421 void put_multipath_config(struct config *conf) { }
422 int main(void) {
423 udev = udev_new();
424 multipath_conf = mpath_lib_init();
425 return 0;
426 }'''
427 mpath_test_source_old = '''
428 #include <libudev.h>
429 #include <mpath_persist.h>
430 unsigned mpath_mx_alloc_len = 1024;
431 int logsink;
432 int main(void) {
433 struct udev *udev = udev_new();
434 mpath_lib_init(udev);
435 return 0;
436 }'''
Paolo Bonzini5c530152020-10-15 06:09:27 -0400437 libmpathpersist = cc.find_library('mpathpersist',
438 required: get_option('mpath'),
439 static: enable_static)
440 if libmpathpersist.found()
441 mpathlibs += libmpathpersist
442 if enable_static
443 mpathlibs += cc.find_library('devmapper',
444 required: get_option('mpath'),
445 static: enable_static)
Paolo Bonzini43b43a42020-09-17 12:25:09 +0200446 endif
Paolo Bonzini5c530152020-10-15 06:09:27 -0400447 mpathlibs += cc.find_library('multipath',
448 required: get_option('mpath'),
449 static: enable_static)
450 foreach lib: mpathlibs
451 if not lib.found()
452 mpathlibs = []
453 break
454 endif
455 endforeach
456 if mpathlibs.length() == 0
457 msg = 'Dependencies missing for libmpathpersist'
458 elif cc.links(mpath_test_source_new, dependencies: mpathlibs)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200459 mpathpersist = declare_dependency(dependencies: mpathlibs)
460 mpathpersist_new_api = true
461 elif cc.links(mpath_test_source_old, dependencies: mpathlibs)
462 mpathpersist = declare_dependency(dependencies: mpathlibs)
463 else
Paolo Bonzini5c530152020-10-15 06:09:27 -0400464 msg = 'Cannot detect libmpathpersist API'
465 endif
466 if not mpathpersist.found()
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200467 if get_option('mpath').enabled()
Paolo Bonzini5c530152020-10-15 06:09:27 -0400468 error(msg)
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200469 else
Paolo Bonzini5c530152020-10-15 06:09:27 -0400470 warning(msg + ', disabling')
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200471 endif
472 endif
473 endif
474endif
475
Yonggang Luo5285e592020-10-13 07:43:48 +0800476iconv = not_found
Yonggang Luo5285e592020-10-13 07:43:48 +0800477curses = not_found
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400478if have_system and not get_option('curses').disabled()
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400479 curses_test = '''
480 #include <locale.h>
481 #include <curses.h>
482 #include <wchar.h>
483 int main(void) {
484 wchar_t wch = L'w';
485 setlocale(LC_ALL, "");
486 resize_term(0, 0);
487 addwstr(L"wide chars\n");
488 addnwstr(&wch, 1);
489 add_wch(WACS_DEGREE);
490 return 0;
491 }'''
492
Yonggang Luoca31e302020-11-17 05:31:06 +0800493 curses_dep_list = targetos == 'windows' ? ['ncurses', 'ncursesw'] : ['ncursesw']
494 foreach curses_dep : curses_dep_list
495 if not curses.found()
496 curses = dependency(curses_dep,
497 required: false,
498 method: 'pkg-config',
499 static: enable_static)
500 endif
501 endforeach
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400502 msg = get_option('curses').enabled() ? 'curses library not found' : ''
503 if curses.found()
504 if cc.links(curses_test, dependencies: [curses])
505 curses = declare_dependency(compile_args: '-DNCURSES_WIDECHAR', dependencies: [curses])
506 else
507 msg = 'curses package not usable'
508 curses = not_found
Yonggang Luo5285e592020-10-13 07:43:48 +0800509 endif
510 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400511 if not curses.found()
512 curses_compile_args = ['-DNCURSES_WIDECHAR']
513 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
514 if targetos != 'windows' and not has_curses_h
515 message('Trying with /usr/include/ncursesw')
516 curses_compile_args += ['-I/usr/include/ncursesw']
517 has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
518 endif
519 if has_curses_h
520 curses_libname_list = (targetos == 'windows' ? ['pdcurses'] : ['ncursesw', 'cursesw'])
521 foreach curses_libname : curses_libname_list
Yonggang Luo5285e592020-10-13 07:43:48 +0800522 libcurses = cc.find_library(curses_libname,
523 required: false,
Yonggang Luo5285e592020-10-13 07:43:48 +0800524 static: enable_static)
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400525 if libcurses.found()
526 if cc.links(curses_test, args: curses_compile_args, dependencies: libcurses)
527 curses = declare_dependency(compile_args: curses_compile_args,
528 dependencies: [libcurses])
529 break
530 else
531 msg = 'curses library not usable'
532 endif
Yonggang Luo5285e592020-10-13 07:43:48 +0800533 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400534 endforeach
535 endif
536 endif
537 if not get_option('iconv').disabled()
538 foreach link_args : [ ['-liconv'], [] ]
539 # Programs will be linked with glib and this will bring in libiconv on FreeBSD.
540 # We need to use libiconv if available because mixing libiconv's headers with
541 # the system libc does not work.
542 # However, without adding glib to the dependencies -L/usr/local/lib will not be
543 # included in the command line and libiconv will not be found.
544 if cc.links('''
545 #include <iconv.h>
546 int main(void) {
547 iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
548 return conv != (iconv_t) -1;
549 }''', args: config_host['GLIB_CFLAGS'].split() + config_host['GLIB_LIBS'].split() + link_args)
550 iconv = declare_dependency(link_args: link_args, dependencies: glib)
551 break
Yonggang Luo5285e592020-10-13 07:43:48 +0800552 endif
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400553 endforeach
554 endif
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400555 if curses.found() and not iconv.found()
556 if get_option('iconv').enabled()
557 error('iconv not available')
558 endif
559 msg = 'iconv required for curses UI but not available'
560 curses = not_found
561 endif
562 if not curses.found() and msg != ''
563 if get_option('curses').enabled()
564 error(msg)
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400565 else
Paolo Bonzini925a40d2020-10-19 04:42:11 -0400566 warning(msg + ', disabling')
Paolo Bonzini30fe76b2020-10-15 13:26:50 -0400567 endif
Yonggang Luo5285e592020-10-13 07:43:48 +0800568 endif
569endif
570
Paolo Bonzini26347332019-07-29 15:40:07 +0200571brlapi = not_found
572if 'CONFIG_BRLAPI' in config_host
573 brlapi = declare_dependency(link_args: config_host['BRLAPI_LIBS'].split())
574endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100575
Paolo Bonzini760e4322020-08-26 08:09:48 +0200576sdl = not_found
577if have_system
Yonggang Luo363743d2020-08-26 23:10:03 +0800578 sdl = dependency('sdl2', required: get_option('sdl'), static: enable_static)
Paolo Bonzini760e4322020-08-26 08:09:48 +0200579 sdl_image = not_found
580endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100581if sdl.found()
582 # work around 2.0.8 bug
583 sdl = declare_dependency(compile_args: '-Wno-undef',
584 dependencies: sdl)
Volker Rümelin7161a432020-08-29 12:41:58 +0200585 sdl_image = dependency('SDL2_image', required: get_option('sdl_image'),
Paolo Bonzini1a949332020-08-31 06:27:00 -0400586 method: 'pkg-config', static: enable_static)
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100587else
588 if get_option('sdl_image').enabled()
Sergei Trofimovicha8dc2ac2020-09-08 08:40:16 +0100589 error('sdl-image required, but SDL was @0@'.format(
590 get_option('sdl').disabled() ? 'disabled' : 'not found'))
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100591 endif
592 sdl_image = not_found
Paolo Bonzini26347332019-07-29 15:40:07 +0200593endif
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100594
Marc-André Lureau5e5733e2019-08-29 22:34:43 +0400595rbd = not_found
596if 'CONFIG_RBD' in config_host
597 rbd = declare_dependency(link_args: config_host['RBD_LIBS'].split())
598endif
599glusterfs = not_found
600if 'CONFIG_GLUSTERFS' in config_host
601 glusterfs = declare_dependency(compile_args: config_host['GLUSTERFS_CFLAGS'].split(),
602 link_args: config_host['GLUSTERFS_LIBS'].split())
603endif
604libssh = not_found
605if 'CONFIG_LIBSSH' in config_host
606 libssh = declare_dependency(compile_args: config_host['LIBSSH_CFLAGS'].split(),
607 link_args: config_host['LIBSSH_LIBS'].split())
608endif
609libbzip2 = not_found
610if 'CONFIG_BZIP2' in config_host
611 libbzip2 = declare_dependency(link_args: config_host['BZIP2_LIBS'].split())
612endif
613liblzfse = not_found
614if 'CONFIG_LZFSE' in config_host
615 liblzfse = declare_dependency(link_args: config_host['LZFSE_LIBS'].split())
616endif
Paolo Bonzini478e9432020-08-17 12:47:55 +0200617oss = not_found
618if 'CONFIG_AUDIO_OSS' in config_host
619 oss = declare_dependency(link_args: config_host['OSS_LIBS'].split())
620endif
621dsound = not_found
622if 'CONFIG_AUDIO_DSOUND' in config_host
623 dsound = declare_dependency(link_args: config_host['DSOUND_LIBS'].split())
624endif
625coreaudio = not_found
626if 'CONFIG_AUDIO_COREAUDIO' in config_host
627 coreaudio = declare_dependency(link_args: config_host['COREAUDIO_LIBS'].split())
628endif
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400629opengl = not_found
630if 'CONFIG_OPENGL' in config_host
Paolo Bonzinide2d3002020-09-01 08:41:17 -0400631 opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(),
632 link_args: config_host['OPENGL_LIBS'].split())
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400633endif
634gtk = not_found
635if 'CONFIG_GTK' in config_host
636 gtk = declare_dependency(compile_args: config_host['GTK_CFLAGS'].split(),
637 link_args: config_host['GTK_LIBS'].split())
638endif
639vte = not_found
640if 'CONFIG_VTE' in config_host
641 vte = declare_dependency(compile_args: config_host['VTE_CFLAGS'].split(),
642 link_args: config_host['VTE_LIBS'].split())
643endif
644x11 = not_found
645if 'CONFIG_X11' in config_host
646 x11 = declare_dependency(compile_args: config_host['X11_CFLAGS'].split(),
647 link_args: config_host['X11_LIBS'].split())
648endif
Paolo Bonzinia0b93232020-02-06 15:48:52 +0100649vnc = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400650png = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400651jpeg = not_found
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400652sasl = not_found
Paolo Bonzinia0b93232020-02-06 15:48:52 +0100653if get_option('vnc').enabled()
654 vnc = declare_dependency() # dummy dependency
655 png = dependency('libpng', required: get_option('vnc_png'),
Paolo Bonzini1a949332020-08-31 06:27:00 -0400656 method: 'pkg-config', static: enable_static)
Paolo Bonzini8e242b32020-11-23 13:34:02 -0500657 jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'),
658 method: 'pkg-config', static: enable_static)
Paolo Bonzinia0b93232020-02-06 15:48:52 +0100659 sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'],
660 required: get_option('vnc_sasl'),
661 static: enable_static)
662 if sasl.found()
663 sasl = declare_dependency(dependencies: sasl,
664 compile_args: '-DSTRUCT_IOVEC_DEFINED')
665 endif
Marc-André Lureau2b1ccdf2019-07-16 23:21:02 +0400666endif
Marc-André Lureau708eab42019-09-03 16:59:33 +0400667snappy = not_found
668if 'CONFIG_SNAPPY' in config_host
669 snappy = declare_dependency(link_args: config_host['SNAPPY_LIBS'].split())
670endif
671lzo = not_found
672if 'CONFIG_LZO' in config_host
673 lzo = declare_dependency(link_args: config_host['LZO_LIBS'].split())
674endif
Marc-André Lureau55166232019-07-24 19:16:22 +0400675rdma = not_found
676if 'CONFIG_RDMA' in config_host
677 rdma = declare_dependency(link_args: config_host['RDMA_LIBS'].split())
678endif
Marc-André Lureauab318052019-07-24 19:23:16 +0400679numa = not_found
680if 'CONFIG_NUMA' in config_host
681 numa = declare_dependency(link_args: config_host['NUMA_LIBS'].split())
682endif
Marc-André Lureau582ea952019-08-15 15:15:32 +0400683xen = not_found
684if 'CONFIG_XEN_BACKEND' in config_host
685 xen = declare_dependency(compile_args: config_host['XEN_CFLAGS'].split(),
686 link_args: config_host['XEN_LIBS'].split())
687endif
Paolo Bonzini06677ce2020-08-06 13:07:39 +0200688cacard = not_found
689if 'CONFIG_SMARTCARD' in config_host
690 cacard = declare_dependency(compile_args: config_host['SMARTCARD_CFLAGS'].split(),
691 link_args: config_host['SMARTCARD_LIBS'].split())
692endif
César Belley0a40bcb2020-08-26 13:42:04 +0200693u2f = not_found
694if have_system
695 u2f = dependency('u2f-emu', required: get_option('u2f'),
696 method: 'pkg-config',
697 static: enable_static)
698endif
Paolo Bonzini06677ce2020-08-06 13:07:39 +0200699usbredir = not_found
700if 'CONFIG_USB_REDIR' in config_host
701 usbredir = declare_dependency(compile_args: config_host['USB_REDIR_CFLAGS'].split(),
702 link_args: config_host['USB_REDIR_LIBS'].split())
703endif
704libusb = not_found
705if 'CONFIG_USB_LIBUSB' in config_host
706 libusb = declare_dependency(compile_args: config_host['LIBUSB_CFLAGS'].split(),
707 link_args: config_host['LIBUSB_LIBS'].split())
708endif
Marc-André Lureauc9322ab2019-08-18 19:51:17 +0400709libpmem = not_found
710if 'CONFIG_LIBPMEM' in config_host
711 libpmem = declare_dependency(compile_args: config_host['LIBPMEM_CFLAGS'].split(),
712 link_args: config_host['LIBPMEM_LIBS'].split())
713endif
Bruce Rogersc7c91a72020-08-24 09:52:12 -0600714libdaxctl = not_found
715if 'CONFIG_LIBDAXCTL' in config_host
716 libdaxctl = declare_dependency(link_args: config_host['LIBDAXCTL_LIBS'].split())
717endif
Marc-André Lureau8ce0a452020-08-28 15:07:20 +0400718tasn1 = not_found
719if 'CONFIG_TASN1' in config_host
720 tasn1 = declare_dependency(compile_args: config_host['TASN1_CFLAGS'].split(),
721 link_args: config_host['TASN1_LIBS'].split())
722endif
Marc-André Lureauaf04e892020-08-28 15:07:25 +0400723keyutils = dependency('libkeyutils', required: false,
724 method: 'pkg-config', static: enable_static)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400725
Marc-André Lureau3909def2020-08-28 15:07:33 +0400726has_gettid = cc.has_function('gettid')
727
Paolo Bonziniaa087962020-09-01 11:15:30 -0400728# Malloc tests
729
730malloc = []
731if get_option('malloc') == 'system'
732 has_malloc_trim = \
733 not get_option('malloc_trim').disabled() and \
734 cc.links('''#include <malloc.h>
735 int main(void) { malloc_trim(0); return 0; }''')
736else
737 has_malloc_trim = false
738 malloc = cc.find_library(get_option('malloc'), required: true)
739endif
740if not has_malloc_trim and get_option('malloc_trim').enabled()
741 if get_option('malloc') == 'system'
742 error('malloc_trim not available on this platform.')
743 else
744 error('malloc_trim not available with non-libc memory allocator')
745 endif
746endif
747
Max Reitz84e319a2020-11-02 17:18:55 +0100748# Check whether the glibc provides statx()
749
750statx_test = '''
751 #ifndef _GNU_SOURCE
752 #define _GNU_SOURCE
753 #endif
754 #include <sys/stat.h>
755 int main(void) {
756 struct statx statxbuf;
757 statx(0, "", 0, STATX_BASIC_STATS, &statxbuf);
758 return 0;
759 }'''
760
761has_statx = cc.links(statx_test)
762
Stefan Hajnoczieb6a3882020-11-10 17:11:20 +0000763have_vhost_user_blk_server = (targetos == 'linux' and
764 'CONFIG_VHOST_USER' in config_host)
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +0000765
766if get_option('vhost_user_blk_server').enabled()
767 if targetos != 'linux'
768 error('vhost_user_blk_server requires linux')
Stefan Hajnoczieb6a3882020-11-10 17:11:20 +0000769 elif 'CONFIG_VHOST_USER' not in config_host
770 error('vhost_user_blk_server requires vhost-user support')
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +0000771 endif
772elif get_option('vhost_user_blk_server').disabled() or not have_system
773 have_vhost_user_blk_server = false
774endif
775
Daniele Buono9e62ba42020-12-04 18:06:14 -0500776
Max Reitzdf4ea702020-10-27 20:05:46 +0100777if get_option('fuse').disabled() and get_option('fuse_lseek').enabled()
778 error('Cannot enable fuse-lseek while fuse is disabled')
779endif
780
Max Reitza484a712020-10-27 20:05:41 +0100781fuse = dependency('fuse3', required: get_option('fuse'),
782 version: '>=3.1', method: 'pkg-config',
783 static: enable_static)
784
Max Reitzdf4ea702020-10-27 20:05:46 +0100785fuse_lseek = not_found
786if not get_option('fuse_lseek').disabled()
787 if fuse.version().version_compare('>=3.8')
788 # Dummy dependency
789 fuse_lseek = declare_dependency()
790 elif get_option('fuse_lseek').enabled()
791 if fuse.found()
792 error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version())
793 else
794 error('fuse-lseek requires libfuse, which was not found')
795 endif
796 endif
797endif
798
Daniele Buono9e62ba42020-12-04 18:06:14 -0500799if get_option('cfi')
800 cfi_flags=[]
801 # Check for dependency on LTO
802 if not get_option('b_lto')
803 error('Selected Control-Flow Integrity but LTO is disabled')
804 endif
805 if config_host.has_key('CONFIG_MODULES')
806 error('Selected Control-Flow Integrity is not compatible with modules')
807 endif
808 # Check for cfi flags. CFI requires LTO so we can't use
809 # get_supported_arguments, but need a more complex "compiles" which allows
810 # custom arguments
811 if cc.compiles('int main () { return 0; }', name: '-fsanitize=cfi-icall',
812 args: ['-flto', '-fsanitize=cfi-icall'] )
813 cfi_flags += '-fsanitize=cfi-icall'
814 else
815 error('-fsanitize=cfi-icall is not supported by the compiler')
816 endif
817 if cc.compiles('int main () { return 0; }',
818 name: '-fsanitize-cfi-icall-generalize-pointers',
819 args: ['-flto', '-fsanitize=cfi-icall',
820 '-fsanitize-cfi-icall-generalize-pointers'] )
821 cfi_flags += '-fsanitize-cfi-icall-generalize-pointers'
822 else
823 error('-fsanitize-cfi-icall-generalize-pointers is not supported by the compiler')
824 endif
825 if get_option('cfi_debug')
826 if cc.compiles('int main () { return 0; }',
827 name: '-fno-sanitize-trap=cfi-icall',
828 args: ['-flto', '-fsanitize=cfi-icall',
829 '-fno-sanitize-trap=cfi-icall'] )
830 cfi_flags += '-fno-sanitize-trap=cfi-icall'
831 else
832 error('-fno-sanitize-trap=cfi-icall is not supported by the compiler')
833 endif
834 endif
835 add_project_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
836 add_project_link_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc'])
837endif
838
Paolo Bonzinia0c91622020-10-07 11:01:51 -0400839#################
840# config-host.h #
841#################
Paolo Bonzini859aef02020-08-04 18:14:26 +0200842
Paolo Bonzini16bf7a32020-10-16 03:19:14 -0400843config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir'))
844config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix'))
845config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir)
846config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir)
847config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir)
848config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath'))
849config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir'))
850config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir)
851config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir'))
852config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
853config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir)
854config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
855
Paolo Bonzinib4e312e2020-09-01 11:28:59 -0400856config_host_data.set('CONFIG_COCOA', cocoa.found())
Paolo Bonzinif01496a2020-09-16 17:54:14 +0200857config_host_data.set('CONFIG_LIBUDEV', libudev.found())
Paolo Bonzini6ec0e152020-09-16 18:07:29 +0200858config_host_data.set('CONFIG_MPATH', mpathpersist.found())
859config_host_data.set('CONFIG_MPATH_NEW_API', mpathpersist_new_api)
Yonggang Luo5285e592020-10-13 07:43:48 +0800860config_host_data.set('CONFIG_CURSES', curses.found())
Paolo Bonzini35be72b2020-02-06 14:17:15 +0100861config_host_data.set('CONFIG_SDL', sdl.found())
862config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found())
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +0000863config_host_data.set('CONFIG_VHOST_USER_BLK_SERVER', have_vhost_user_blk_server)
Paolo Bonzinia0b93232020-02-06 15:48:52 +0100864config_host_data.set('CONFIG_VNC', vnc.found())
865config_host_data.set('CONFIG_VNC_JPEG', jpeg.found())
866config_host_data.set('CONFIG_VNC_PNG', png.found())
867config_host_data.set('CONFIG_VNC_SASL', sasl.found())
Laurent Vivier4113f4c2020-08-24 17:24:29 +0200868config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found())
Marc-André Lureauaf04e892020-08-28 15:07:25 +0400869config_host_data.set('CONFIG_KEYUTILS', keyutils.found())
Marc-André Lureau3909def2020-08-28 15:07:33 +0400870config_host_data.set('CONFIG_GETTID', has_gettid)
Paolo Bonziniaa087962020-09-01 11:15:30 -0400871config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim)
Max Reitz84e319a2020-11-02 17:18:55 +0100872config_host_data.set('CONFIG_STATX', has_statx)
Max Reitza484a712020-10-27 20:05:41 +0100873config_host_data.set('CONFIG_FUSE', fuse.found())
Max Reitzdf4ea702020-10-27 20:05:46 +0100874config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
Daniele Buono9e62ba42020-12-04 18:06:14 -0500875config_host_data.set('CONFIG_CFI', get_option('cfi'))
Paolo Bonzini859aef02020-08-04 18:14:26 +0200876config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version()))
877config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0])
878config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1])
879config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2])
880
Thomas Huth48f670e2020-11-18 18:10:52 +0100881config_host_data.set('HAVE_BTRFS_H', cc.has_header('linux/btrfs.h'))
Thomas Huth2964be52020-11-18 18:10:49 +0100882config_host_data.set('HAVE_DRM_H', cc.has_header('libdrm/drm.h'))
Thomas Huth2802d912020-11-18 18:10:48 +0100883config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h'))
Thomas Huthded5d782020-11-14 11:10:11 +0100884config_host_data.set('HAVE_SYS_IOCCOM_H', cc.has_header('sys/ioccom.h'))
Thomas Huth4a9d5f82020-11-18 18:10:51 +0100885config_host_data.set('HAVE_SYS_KCOV_H', cc.has_header('sys/kcov.h'))
Thomas Huth88c78f12020-11-18 18:10:50 +0100886config_host_data.set('HAVE_SYS_SIGNAL_H', cc.has_header('sys/signal.h'))
Thomas Huthded5d782020-11-14 11:10:11 +0100887
Paolo Bonzini765686d2020-09-18 06:37:21 -0400888ignored = ['CONFIG_QEMU_INTERP_PREFIX'] # actually per-target
Paolo Bonzini859aef02020-08-04 18:14:26 +0200889arrays = ['CONFIG_AUDIO_DRIVERS', 'CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST']
Paolo Bonzini16bf7a32020-10-16 03:19:14 -0400890strings = ['HOST_DSOSUF', 'CONFIG_IASL']
Paolo Bonzini859aef02020-08-04 18:14:26 +0200891foreach k, v: config_host
Paolo Bonzini765686d2020-09-18 06:37:21 -0400892 if ignored.contains(k)
893 # do nothing
894 elif arrays.contains(k)
Paolo Bonzini859aef02020-08-04 18:14:26 +0200895 if v != ''
896 v = '"' + '", "'.join(v.split()) + '", '
897 endif
898 config_host_data.set(k, v)
899 elif k == 'ARCH'
900 config_host_data.set('HOST_' + v.to_upper(), 1)
901 elif strings.contains(k)
902 if not k.startswith('CONFIG_')
903 k = 'CONFIG_' + k.to_upper()
904 endif
905 config_host_data.set_quoted(k, v)
906 elif k.startswith('CONFIG_') or k.startswith('HAVE_') or k.startswith('HOST_')
907 config_host_data.set(k, v == 'y' ? 1 : v)
908 endif
909endforeach
Paolo Bonzini859aef02020-08-04 18:14:26 +0200910
Paolo Bonzinia0c91622020-10-07 11:01:51 -0400911########################
912# Target configuration #
913########################
914
Paolo Bonzini2becc362020-02-03 11:42:03 +0100915minikconf = find_program('scripts/minikconf.py')
Paolo Bonzini05512f52020-09-16 15:31:11 -0400916config_all = {}
Paolo Bonzinia98006b2020-09-01 05:32:23 -0400917config_all_devices = {}
Paolo Bonzinica0fc782020-09-01 06:04:28 -0400918config_all_disas = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +0100919config_devices_mak_list = []
920config_devices_h = {}
Paolo Bonzini859aef02020-08-04 18:14:26 +0200921config_target_h = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +0100922config_target_mak = {}
Paolo Bonzinica0fc782020-09-01 06:04:28 -0400923
924disassemblers = {
925 'alpha' : ['CONFIG_ALPHA_DIS'],
926 'arm' : ['CONFIG_ARM_DIS'],
927 'avr' : ['CONFIG_AVR_DIS'],
928 'cris' : ['CONFIG_CRIS_DIS'],
929 'hppa' : ['CONFIG_HPPA_DIS'],
930 'i386' : ['CONFIG_I386_DIS'],
931 'x86_64' : ['CONFIG_I386_DIS'],
932 'x32' : ['CONFIG_I386_DIS'],
933 'lm32' : ['CONFIG_LM32_DIS'],
934 'm68k' : ['CONFIG_M68K_DIS'],
935 'microblaze' : ['CONFIG_MICROBLAZE_DIS'],
936 'mips' : ['CONFIG_MIPS_DIS'],
937 'moxie' : ['CONFIG_MOXIE_DIS'],
938 'nios2' : ['CONFIG_NIOS2_DIS'],
939 'or1k' : ['CONFIG_OPENRISC_DIS'],
940 'ppc' : ['CONFIG_PPC_DIS'],
941 'riscv' : ['CONFIG_RISCV_DIS'],
942 'rx' : ['CONFIG_RX_DIS'],
943 's390' : ['CONFIG_S390_DIS'],
944 'sh4' : ['CONFIG_SH4_DIS'],
945 'sparc' : ['CONFIG_SPARC_DIS'],
946 'xtensa' : ['CONFIG_XTENSA_DIS'],
947}
948if link_language == 'cpp'
949 disassemblers += {
950 'aarch64' : [ 'CONFIG_ARM_A64_DIS'],
951 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'],
952 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'],
953 }
954endif
955
Paolo Bonzini2becc362020-02-03 11:42:03 +0100956kconfig_external_symbols = [
957 'CONFIG_KVM',
958 'CONFIG_XEN',
959 'CONFIG_TPM',
960 'CONFIG_SPICE',
961 'CONFIG_IVSHMEM',
962 'CONFIG_OPENGL',
963 'CONFIG_X11',
964 'CONFIG_VHOST_USER',
Laurent Vivier40bc0ca2020-09-24 23:00:23 +0200965 'CONFIG_VHOST_VDPA',
Paolo Bonzini2becc362020-02-03 11:42:03 +0100966 'CONFIG_VHOST_KERNEL',
967 'CONFIG_VIRTFS',
968 'CONFIG_LINUX',
969 'CONFIG_PVRDMA',
970]
Paolo Bonzinia9a74902020-09-21 05:11:01 -0400971ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ]
Paolo Bonzinica0fc782020-09-01 06:04:28 -0400972
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -0400973default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host
974actual_target_dirs = []
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200975fdt_required = []
Paolo Bonzinia81df1b2020-08-19 08:44:56 -0400976foreach target : target_dirs
Paolo Bonzini765686d2020-09-18 06:37:21 -0400977 config_target = { 'TARGET_NAME': target.split('-')[0] }
978 if target.endswith('linux-user')
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -0400979 if targetos != 'linux'
980 if default_targets
981 continue
982 endif
983 error('Target @0@ is only available on a Linux host'.format(target))
984 endif
Paolo Bonzini765686d2020-09-18 06:37:21 -0400985 config_target += { 'CONFIG_LINUX_USER': 'y' }
986 elif target.endswith('bsd-user')
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -0400987 if 'CONFIG_BSD' not in config_host
988 if default_targets
989 continue
990 endif
991 error('Target @0@ is only available on a BSD host'.format(target))
992 endif
Paolo Bonzini765686d2020-09-18 06:37:21 -0400993 config_target += { 'CONFIG_BSD_USER': 'y' }
994 elif target.endswith('softmmu')
995 config_target += { 'CONFIG_SOFTMMU': 'y' }
996 endif
997 if target.endswith('-user')
998 config_target += {
999 'CONFIG_USER_ONLY': 'y',
1000 'CONFIG_QEMU_INTERP_PREFIX':
1001 config_host['CONFIG_QEMU_INTERP_PREFIX'].format(config_target['TARGET_NAME'])
1002 }
1003 endif
Paolo Bonzini859aef02020-08-04 18:14:26 +02001004
Paolo Bonzini8a199802020-09-18 05:37:01 -04001005 have_accel = false
1006 foreach sym: accelerators
1007 if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, [])
1008 config_target += { sym: 'y' }
1009 config_all += { sym: 'y' }
1010 if sym == 'CONFIG_XEN' and have_xen_pci_passthrough
1011 config_target += { 'CONFIG_XEN_PCI_PASSTHROUGH': 'y' }
1012 endif
1013 have_accel = true
1014 endif
1015 endforeach
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001016 if not have_accel
1017 if default_targets
1018 continue
1019 endif
1020 error('No accelerator available for target @0@'.format(target))
1021 endif
Paolo Bonzini8a199802020-09-18 05:37:01 -04001022
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001023 actual_target_dirs += target
Paolo Bonzini765686d2020-09-18 06:37:21 -04001024 config_target += keyval.load('default-configs/targets' / target + '.mak')
Paolo Bonzinia9a74902020-09-21 05:11:01 -04001025 config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
Paolo Bonzini765686d2020-09-18 06:37:21 -04001026
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001027 if 'TARGET_NEED_FDT' in config_target
1028 fdt_required += target
1029 endif
1030
Paolo Bonzinifa731682020-09-21 05:19:07 -04001031 # Add default keys
1032 if 'TARGET_BASE_ARCH' not in config_target
1033 config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}
1034 endif
1035 if 'TARGET_ABI_DIR' not in config_target
1036 config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']}
1037 endif
Paolo Bonzini859aef02020-08-04 18:14:26 +02001038
Paolo Bonzinica0fc782020-09-01 06:04:28 -04001039 foreach k, v: disassemblers
1040 if config_host['ARCH'].startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k)
1041 foreach sym: v
1042 config_target += { sym: 'y' }
1043 config_all_disas += { sym: 'y' }
1044 endforeach
1045 endif
1046 endforeach
1047
Paolo Bonzini859aef02020-08-04 18:14:26 +02001048 config_target_data = configuration_data()
1049 foreach k, v: config_target
1050 if not k.startswith('TARGET_') and not k.startswith('CONFIG_')
1051 # do nothing
1052 elif ignored.contains(k)
1053 # do nothing
1054 elif k == 'TARGET_BASE_ARCH'
Paolo Bonzinia9a74902020-09-21 05:11:01 -04001055 # Note that TARGET_BASE_ARCH ends up in config-target.h but it is
1056 # not used to select files from sourcesets.
Paolo Bonzini859aef02020-08-04 18:14:26 +02001057 config_target_data.set('TARGET_' + v.to_upper(), 1)
Paolo Bonzini765686d2020-09-18 06:37:21 -04001058 elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX'
Paolo Bonzini859aef02020-08-04 18:14:26 +02001059 config_target_data.set_quoted(k, v)
1060 elif v == 'y'
1061 config_target_data.set(k, 1)
1062 else
1063 config_target_data.set(k, v)
1064 endif
1065 endforeach
1066 config_target_h += {target: configure_file(output: target + '-config-target.h',
1067 configuration: config_target_data)}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001068
1069 if target.endswith('-softmmu')
Paolo Bonzini2becc362020-02-03 11:42:03 +01001070 base_kconfig = []
1071 foreach sym : kconfig_external_symbols
Paolo Bonzini859aef02020-08-04 18:14:26 +02001072 if sym in config_target or sym in config_host
Paolo Bonzini2becc362020-02-03 11:42:03 +01001073 base_kconfig += '@0@=y'.format(sym)
1074 endif
1075 endforeach
1076
1077 config_devices_mak = target + '-config-devices.mak'
1078 config_devices_mak = configure_file(
Paolo Bonzini1bb4cb12020-09-18 06:06:09 -04001079 input: ['default-configs/devices' / target + '.mak', 'Kconfig'],
Paolo Bonzini2becc362020-02-03 11:42:03 +01001080 output: config_devices_mak,
1081 depfile: config_devices_mak + '.d',
1082 capture: true,
1083 command: [minikconf, config_host['CONFIG_MINIKCONF_MODE'],
1084 config_devices_mak, '@DEPFILE@', '@INPUT@',
1085 base_kconfig])
Paolo Bonzini859aef02020-08-04 18:14:26 +02001086
1087 config_devices_data = configuration_data()
1088 config_devices = keyval.load(config_devices_mak)
1089 foreach k, v: config_devices
1090 config_devices_data.set(k, 1)
1091 endforeach
Paolo Bonzini2becc362020-02-03 11:42:03 +01001092 config_devices_mak_list += config_devices_mak
Paolo Bonzini859aef02020-08-04 18:14:26 +02001093 config_devices_h += {target: configure_file(output: target + '-config-devices.h',
1094 configuration: config_devices_data)}
1095 config_target += config_devices
Paolo Bonzinia98006b2020-09-01 05:32:23 -04001096 config_all_devices += config_devices
Paolo Bonzini2becc362020-02-03 11:42:03 +01001097 endif
1098 config_target_mak += {target: config_target}
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001099endforeach
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001100target_dirs = actual_target_dirs
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001101
Paolo Bonzini2becc362020-02-03 11:42:03 +01001102# This configuration is used to build files that are shared by
1103# multiple binaries, and then extracted out of the "common"
1104# static_library target.
1105#
1106# We do not use all_sources()/all_dependencies(), because it would
1107# build literally all source files, including devices only used by
1108# targets that are not built for this compilation. The CONFIG_ALL
1109# pseudo symbol replaces it.
1110
Paolo Bonzini05512f52020-09-16 15:31:11 -04001111config_all += config_all_devices
Paolo Bonzini2becc362020-02-03 11:42:03 +01001112config_all += config_host
1113config_all += config_all_disas
1114config_all += {
1115 'CONFIG_XEN': config_host.has_key('CONFIG_XEN_BACKEND'),
1116 'CONFIG_SOFTMMU': have_system,
1117 'CONFIG_USER_ONLY': have_user,
1118 'CONFIG_ALL': true,
1119}
1120
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001121##############
1122# Submodules #
1123##############
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001124
1125capstone = not_found
1126capstone_opt = get_option('capstone')
1127if capstone_opt in ['enabled', 'auto', 'system']
1128 have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile')
Richard Hendersonbcf36862020-09-21 09:46:16 -07001129 capstone = dependency('capstone', version: '>=4.0',
1130 static: enable_static, method: 'pkg-config',
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001131 required: capstone_opt == 'system' or
1132 capstone_opt == 'enabled' and not have_internal)
1133 if capstone.found()
1134 capstone_opt = 'system'
1135 elif have_internal
1136 capstone_opt = 'internal'
1137 else
1138 capstone_opt = 'disabled'
1139 endif
1140endif
1141if capstone_opt == 'internal'
1142 capstone_data = configuration_data()
1143 capstone_data.set('CAPSTONE_USE_SYS_DYN_MEM', '1')
1144
1145 capstone_files = files(
1146 'capstone/cs.c',
1147 'capstone/MCInst.c',
1148 'capstone/MCInstrDesc.c',
1149 'capstone/MCRegisterInfo.c',
1150 'capstone/SStream.c',
1151 'capstone/utils.c'
1152 )
1153
1154 if 'CONFIG_ARM_DIS' in config_all_disas
1155 capstone_data.set('CAPSTONE_HAS_ARM', '1')
1156 capstone_files += files(
1157 'capstone/arch/ARM/ARMDisassembler.c',
1158 'capstone/arch/ARM/ARMInstPrinter.c',
1159 'capstone/arch/ARM/ARMMapping.c',
1160 'capstone/arch/ARM/ARMModule.c'
1161 )
1162 endif
1163
1164 # FIXME: This config entry currently depends on a c++ compiler.
1165 # Which is needed for building libvixl, but not for capstone.
1166 if 'CONFIG_ARM_A64_DIS' in config_all_disas
1167 capstone_data.set('CAPSTONE_HAS_ARM64', '1')
1168 capstone_files += files(
1169 'capstone/arch/AArch64/AArch64BaseInfo.c',
1170 'capstone/arch/AArch64/AArch64Disassembler.c',
1171 'capstone/arch/AArch64/AArch64InstPrinter.c',
1172 'capstone/arch/AArch64/AArch64Mapping.c',
1173 'capstone/arch/AArch64/AArch64Module.c'
1174 )
1175 endif
1176
1177 if 'CONFIG_PPC_DIS' in config_all_disas
1178 capstone_data.set('CAPSTONE_HAS_POWERPC', '1')
1179 capstone_files += files(
1180 'capstone/arch/PowerPC/PPCDisassembler.c',
1181 'capstone/arch/PowerPC/PPCInstPrinter.c',
1182 'capstone/arch/PowerPC/PPCMapping.c',
1183 'capstone/arch/PowerPC/PPCModule.c'
1184 )
1185 endif
1186
Richard Henderson3d562842020-01-04 07:24:59 +10001187 if 'CONFIG_S390_DIS' in config_all_disas
1188 capstone_data.set('CAPSTONE_HAS_SYSZ', '1')
1189 capstone_files += files(
1190 'capstone/arch/SystemZ/SystemZDisassembler.c',
1191 'capstone/arch/SystemZ/SystemZInstPrinter.c',
1192 'capstone/arch/SystemZ/SystemZMapping.c',
1193 'capstone/arch/SystemZ/SystemZModule.c',
1194 'capstone/arch/SystemZ/SystemZMCTargetDesc.c'
1195 )
1196 endif
1197
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001198 if 'CONFIG_I386_DIS' in config_all_disas
1199 capstone_data.set('CAPSTONE_HAS_X86', 1)
1200 capstone_files += files(
1201 'capstone/arch/X86/X86Disassembler.c',
1202 'capstone/arch/X86/X86DisassemblerDecoder.c',
1203 'capstone/arch/X86/X86ATTInstPrinter.c',
1204 'capstone/arch/X86/X86IntelInstPrinter.c',
Richard Hendersoneef20e42020-09-14 16:02:02 -07001205 'capstone/arch/X86/X86InstPrinterCommon.c',
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001206 'capstone/arch/X86/X86Mapping.c',
1207 'capstone/arch/X86/X86Module.c'
1208 )
1209 endif
1210
1211 configure_file(output: 'capstone-defs.h', configuration: capstone_data)
1212
1213 capstone_cargs = [
1214 # FIXME: There does not seem to be a way to completely replace the c_args
1215 # that come from add_project_arguments() -- we can only add to them.
1216 # So: disable all warnings with a big hammer.
1217 '-Wno-error', '-w',
1218
1219 # Include all configuration defines via a header file, which will wind up
1220 # as a dependency on the object file, and thus changes here will result
1221 # in a rebuild.
1222 '-include', 'capstone-defs.h'
1223 ]
1224
1225 libcapstone = static_library('capstone',
1226 sources: capstone_files,
1227 c_args: capstone_cargs,
1228 include_directories: 'capstone/include')
1229 capstone = declare_dependency(link_with: libcapstone,
Richard Hendersoneef20e42020-09-14 16:02:02 -07001230 include_directories: 'capstone/include/capstone')
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001231endif
Paolo Bonzini4d34a862020-10-05 11:31:15 +02001232
1233slirp = not_found
1234slirp_opt = 'disabled'
1235if have_system
1236 slirp_opt = get_option('slirp')
1237 if slirp_opt in ['enabled', 'auto', 'system']
1238 have_internal = fs.exists(meson.current_source_dir() / 'slirp/meson.build')
1239 slirp = dependency('slirp', static: enable_static,
1240 method: 'pkg-config',
1241 required: slirp_opt == 'system' or
1242 slirp_opt == 'enabled' and not have_internal)
1243 if slirp.found()
1244 slirp_opt = 'system'
1245 elif have_internal
1246 slirp_opt = 'internal'
1247 else
1248 slirp_opt = 'disabled'
1249 endif
1250 endif
1251 if slirp_opt == 'internal'
1252 slirp_deps = []
1253 if targetos == 'windows'
1254 slirp_deps = cc.find_library('iphlpapi')
1255 endif
1256 slirp_conf = configuration_data()
1257 slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0])
1258 slirp_conf.set('SLIRP_MINOR_VERSION', meson.project_version().split('.')[1])
1259 slirp_conf.set('SLIRP_MICRO_VERSION', meson.project_version().split('.')[2])
1260 slirp_conf.set_quoted('SLIRP_VERSION_STRING', meson.project_version())
1261 slirp_cargs = ['-DG_LOG_DOMAIN="Slirp"']
1262 slirp_files = [
1263 'slirp/src/arp_table.c',
1264 'slirp/src/bootp.c',
1265 'slirp/src/cksum.c',
1266 'slirp/src/dhcpv6.c',
1267 'slirp/src/dnssearch.c',
1268 'slirp/src/if.c',
1269 'slirp/src/ip6_icmp.c',
1270 'slirp/src/ip6_input.c',
1271 'slirp/src/ip6_output.c',
1272 'slirp/src/ip_icmp.c',
1273 'slirp/src/ip_input.c',
1274 'slirp/src/ip_output.c',
1275 'slirp/src/mbuf.c',
1276 'slirp/src/misc.c',
1277 'slirp/src/ncsi.c',
1278 'slirp/src/ndp_table.c',
1279 'slirp/src/sbuf.c',
1280 'slirp/src/slirp.c',
1281 'slirp/src/socket.c',
1282 'slirp/src/state.c',
1283 'slirp/src/stream.c',
1284 'slirp/src/tcp_input.c',
1285 'slirp/src/tcp_output.c',
1286 'slirp/src/tcp_subr.c',
1287 'slirp/src/tcp_timer.c',
1288 'slirp/src/tftp.c',
1289 'slirp/src/udp.c',
1290 'slirp/src/udp6.c',
1291 'slirp/src/util.c',
1292 'slirp/src/version.c',
1293 'slirp/src/vmstate.c',
1294 ]
1295
1296 configure_file(
1297 input : 'slirp/src/libslirp-version.h.in',
1298 output : 'libslirp-version.h',
1299 configuration: slirp_conf)
1300
1301 slirp_inc = include_directories('slirp', 'slirp/src')
1302 libslirp = static_library('slirp',
1303 sources: slirp_files,
1304 c_args: slirp_cargs,
1305 include_directories: slirp_inc)
1306 slirp = declare_dependency(link_with: libslirp,
1307 dependencies: slirp_deps,
1308 include_directories: slirp_inc)
1309 endif
1310endif
1311
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001312fdt = not_found
1313fdt_opt = get_option('fdt')
1314if have_system
1315 if fdt_opt in ['enabled', 'auto', 'system']
1316 have_internal = fs.exists(meson.current_source_dir() / 'dtc/libfdt/Makefile.libfdt')
1317 fdt = cc.find_library('fdt', static: enable_static,
1318 required: fdt_opt == 'system' or
1319 fdt_opt == 'enabled' and not have_internal)
1320 if fdt.found() and cc.links('''
1321 #include <libfdt.h>
1322 #include <libfdt_env.h>
1323 int main(void) { fdt_check_full(NULL, 0); return 0; }''',
1324 dependencies: fdt)
1325 fdt_opt = 'system'
1326 elif have_internal
1327 fdt_opt = 'internal'
1328 else
1329 fdt_opt = 'disabled'
1330 endif
1331 endif
1332 if fdt_opt == 'internal'
1333 fdt_files = files(
1334 'dtc/libfdt/fdt.c',
1335 'dtc/libfdt/fdt_ro.c',
1336 'dtc/libfdt/fdt_wip.c',
1337 'dtc/libfdt/fdt_sw.c',
1338 'dtc/libfdt/fdt_rw.c',
1339 'dtc/libfdt/fdt_strerror.c',
1340 'dtc/libfdt/fdt_empty_tree.c',
1341 'dtc/libfdt/fdt_addresses.c',
1342 'dtc/libfdt/fdt_overlay.c',
1343 'dtc/libfdt/fdt_check.c',
1344 )
1345
1346 fdt_inc = include_directories('dtc/libfdt')
1347 libfdt = static_library('fdt',
1348 sources: fdt_files,
1349 include_directories: fdt_inc)
1350 fdt = declare_dependency(link_with: libfdt,
1351 include_directories: fdt_inc)
1352 endif
1353endif
1354if not fdt.found() and fdt_required.length() > 0
1355 error('fdt not available but required by targets ' + ', '.join(fdt_required))
1356endif
1357
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001358config_host_data.set('CONFIG_CAPSTONE', capstone.found())
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001359config_host_data.set('CONFIG_FDT', fdt.found())
Paolo Bonzini4d34a862020-10-05 11:31:15 +02001360config_host_data.set('CONFIG_SLIRP', slirp.found())
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001361
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001362#####################
1363# Generated sources #
1364#####################
Richard Henderson8b18cdb2020-09-13 12:19:25 -07001365
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001366genh += configure_file(output: 'config-host.h', configuration: config_host_data)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001367
Marc-André Lureau3f885652019-07-15 18:06:04 +04001368hxtool = find_program('scripts/hxtool')
Marc-André Lureau650b5d52019-07-15 17:36:47 +04001369shaderinclude = find_program('scripts/shaderinclude.pl')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001370qapi_gen = find_program('scripts/qapi-gen.py')
1371qapi_gen_depends = [ meson.source_root() / 'scripts/qapi/__init__.py',
1372 meson.source_root() / 'scripts/qapi/commands.py',
1373 meson.source_root() / 'scripts/qapi/common.py',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001374 meson.source_root() / 'scripts/qapi/error.py',
1375 meson.source_root() / 'scripts/qapi/events.py',
1376 meson.source_root() / 'scripts/qapi/expr.py',
1377 meson.source_root() / 'scripts/qapi/gen.py',
1378 meson.source_root() / 'scripts/qapi/introspect.py',
1379 meson.source_root() / 'scripts/qapi/parser.py',
1380 meson.source_root() / 'scripts/qapi/schema.py',
1381 meson.source_root() / 'scripts/qapi/source.py',
1382 meson.source_root() / 'scripts/qapi/types.py',
1383 meson.source_root() / 'scripts/qapi/visit.py',
1384 meson.source_root() / 'scripts/qapi/common.py',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001385 meson.source_root() / 'scripts/qapi-gen.py'
1386]
1387
1388tracetool = [
1389 python, files('scripts/tracetool.py'),
1390 '--backend=' + config_host['TRACE_BACKENDS']
1391]
1392
Marc-André Lureau2c273f32019-07-15 17:10:19 +04001393qemu_version_cmd = [find_program('scripts/qemu-version.sh'),
1394 meson.current_source_dir(),
Paolo Bonzini859aef02020-08-04 18:14:26 +02001395 config_host['PKGVERSION'], meson.project_version()]
Marc-André Lureau2c273f32019-07-15 17:10:19 +04001396qemu_version = custom_target('qemu-version.h',
1397 output: 'qemu-version.h',
1398 command: qemu_version_cmd,
1399 capture: true,
1400 build_by_default: true,
1401 build_always_stale: true)
1402genh += qemu_version
1403
Marc-André Lureau3f885652019-07-15 18:06:04 +04001404hxdep = []
1405hx_headers = [
1406 ['qemu-options.hx', 'qemu-options.def'],
1407 ['qemu-img-cmds.hx', 'qemu-img-cmds.h'],
1408]
1409if have_system
1410 hx_headers += [
1411 ['hmp-commands.hx', 'hmp-commands.h'],
1412 ['hmp-commands-info.hx', 'hmp-commands-info.h'],
1413 ]
1414endif
1415foreach d : hx_headers
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04001416 hxdep += custom_target(d[1],
Marc-André Lureau3f885652019-07-15 18:06:04 +04001417 input: files(d[0]),
1418 output: d[1],
1419 capture: true,
1420 build_by_default: true, # to be removed when added to a target
1421 command: [hxtool, '-h', '@INPUT0@'])
1422endforeach
1423genh += hxdep
1424
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001425###################
1426# Collect sources #
1427###################
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001428
Philippe Mathieu-Daudé55567892020-10-06 14:56:01 +02001429authz_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02001430blockdev_ss = ss.source_set()
1431block_ss = ss.source_set()
1432bsd_user_ss = ss.source_set()
Philippe Mathieu-Daudéc2306d72020-10-06 14:55:57 +02001433chardev_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02001434common_ss = ss.source_set()
Philippe Mathieu-Daudé23893042020-10-06 14:56:00 +02001435crypto_ss = ss.source_set()
Philippe Mathieu-Daudéf78536b2020-10-06 14:55:59 +02001436io_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02001437linux_user_ss = ss.source_set()
1438qmp_ss = ss.source_set()
Philippe Mathieu-Daudéda33fc02020-10-06 14:56:02 +02001439qom_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02001440softmmu_ss = ss.source_set()
1441specific_fuzz_ss = ss.source_set()
1442specific_ss = ss.source_set()
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001443stub_ss = ss.source_set()
1444trace_ss = ss.source_set()
Paolo Bonzini2becc362020-02-03 11:42:03 +01001445user_ss = ss.source_set()
Philippe Mathieu-Daudé7e2b8882020-10-06 14:55:55 +02001446util_ss = ss.source_set()
Paolo Bonzini2becc362020-02-03 11:42:03 +01001447
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001448modules = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001449hw_arch = {}
1450target_arch = {}
1451target_softmmu_arch = {}
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001452
1453###############
1454# Trace files #
1455###############
1456
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001457# TODO: add each directory to the subdirs from its own meson.build, once
1458# we have those
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001459trace_events_subdirs = [
1460 'accel/kvm',
1461 'accel/tcg',
1462 'crypto',
1463 'monitor',
1464]
1465if have_user
1466 trace_events_subdirs += [ 'linux-user' ]
1467endif
1468if have_block
1469 trace_events_subdirs += [
1470 'authz',
1471 'block',
1472 'io',
1473 'nbd',
1474 'scsi',
1475 ]
1476endif
1477if have_system
1478 trace_events_subdirs += [
1479 'audio',
1480 'backends',
1481 'backends/tpm',
1482 'chardev',
1483 'hw/9pfs',
1484 'hw/acpi',
1485 'hw/alpha',
1486 'hw/arm',
1487 'hw/audio',
1488 'hw/block',
1489 'hw/block/dataplane',
1490 'hw/char',
1491 'hw/display',
1492 'hw/dma',
1493 'hw/hppa',
1494 'hw/hyperv',
1495 'hw/i2c',
1496 'hw/i386',
1497 'hw/i386/xen',
1498 'hw/ide',
1499 'hw/input',
1500 'hw/intc',
1501 'hw/isa',
1502 'hw/mem',
1503 'hw/mips',
1504 'hw/misc',
1505 'hw/misc/macio',
1506 'hw/net',
Vikram Garhwal98e5d7a2020-11-18 11:48:43 -08001507 'hw/net/can',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001508 'hw/nvram',
1509 'hw/pci',
1510 'hw/pci-host',
1511 'hw/ppc',
1512 'hw/rdma',
1513 'hw/rdma/vmw',
1514 'hw/rtc',
1515 'hw/s390x',
1516 'hw/scsi',
1517 'hw/sd',
1518 'hw/sparc',
1519 'hw/sparc64',
1520 'hw/ssi',
1521 'hw/timer',
1522 'hw/tpm',
1523 'hw/usb',
1524 'hw/vfio',
1525 'hw/virtio',
1526 'hw/watchdog',
1527 'hw/xen',
1528 'hw/gpio',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001529 'migration',
1530 'net',
Philippe Mathieu-Daudé8b7a5502020-08-05 15:02:20 +02001531 'softmmu',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001532 'ui',
1533 ]
1534endif
1535trace_events_subdirs += [
1536 'hw/core',
1537 'qapi',
1538 'qom',
1539 'target/arm',
1540 'target/hppa',
1541 'target/i386',
Claudio Fontanaa9dc68d2020-12-12 16:55:08 +01001542 'target/i386/kvm',
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001543 'target/mips',
1544 'target/ppc',
1545 'target/riscv',
1546 'target/s390x',
1547 'target/sparc',
1548 'util',
1549]
1550
Marc-André Lureau0df750e2020-11-25 14:06:37 +04001551vhost_user = not_found
1552if 'CONFIG_VHOST_USER' in config_host
1553 libvhost_user = subproject('libvhost-user')
1554 vhost_user = libvhost_user.get_variable('vhost_user_dep')
1555endif
1556
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001557subdir('qapi')
1558subdir('qobject')
1559subdir('stubs')
1560subdir('trace')
1561subdir('util')
Marc-André Lureau5582c582019-07-16 19:28:54 +04001562subdir('qom')
1563subdir('authz')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001564subdir('crypto')
Marc-André Lureau2d78b562019-07-15 16:00:36 +04001565subdir('ui')
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001566
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001567
1568if enable_modules
1569 libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO')
1570 modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO')
1571endif
1572
Paolo Bonzini2becc362020-02-03 11:42:03 +01001573stub_ss = stub_ss.apply(config_all, strict: false)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001574
1575util_ss.add_all(trace_ss)
Paolo Bonzini2becc362020-02-03 11:42:03 +01001576util_ss = util_ss.apply(config_all, strict: false)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001577libqemuutil = static_library('qemuutil',
1578 sources: util_ss.sources() + stub_ss.sources() + genh,
Paolo Bonziniaa087962020-09-01 11:15:30 -04001579 dependencies: [util_ss.dependencies(), m, glib, socket, malloc])
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001580qemuutil = declare_dependency(link_with: libqemuutil,
Marc-André Lureau04c6f1e2019-07-18 00:31:05 +04001581 sources: genh + version_res)
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04001582
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001583decodetree = generator(find_program('scripts/decodetree.py'),
1584 output: 'decode-@BASENAME@.c.inc',
1585 arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@'])
1586
Paolo Bonzini478e9432020-08-17 12:47:55 +02001587subdir('audio')
Marc-André Lureau7fcfd452019-07-16 19:33:55 +04001588subdir('io')
Marc-André Lureau848e8ff2019-07-15 23:18:07 +04001589subdir('chardev')
Marc-André Lureauec0d5892019-07-15 15:04:49 +04001590subdir('fsdev')
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001591subdir('libdecnumber')
Marc-André Lureaud3b18482019-08-17 14:55:32 +04001592subdir('target')
Marc-André Lureau708eab42019-09-03 16:59:33 +04001593subdir('dump')
Marc-André Lureauec0d5892019-07-15 15:04:49 +04001594
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04001595block_ss.add(files(
1596 'block.c',
1597 'blockjob.c',
1598 'job.c',
1599 'qemu-io-cmds.c',
1600))
1601block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c'))
1602
1603subdir('nbd')
1604subdir('scsi')
1605subdir('block')
1606
Paolo Bonzini4a963372020-08-03 16:22:28 +02001607blockdev_ss.add(files(
1608 'blockdev.c',
Stefan Hajnoczicbc20bf2020-09-29 13:55:15 +01001609 'blockdev-nbd.c',
Paolo Bonzini4a963372020-08-03 16:22:28 +02001610 'iothread.c',
1611 'job-qmp.c',
1612))
1613
1614# os-posix.c contains POSIX-specific functions used by qemu-storage-daemon,
1615# os-win32.c does not
1616blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c'))
1617softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')])
Paolo Bonzini4a963372020-08-03 16:22:28 +02001618
1619common_ss.add(files('cpus-common.c'))
1620
Paolo Bonzini5d3ea0e2020-08-06 13:40:26 +02001621subdir('softmmu')
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001622
Richard Hendersonf3433462020-09-12 10:47:33 -07001623common_ss.add(capstone)
Paolo Bonzinid9f24bf2020-10-06 09:05:29 +02001624specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001625specific_ss.add(files('exec-vary.c'))
1626specific_ss.add(when: 'CONFIG_TCG', if_true: files(
1627 'fpu/softfloat.c',
1628 'tcg/optimize.c',
1629 'tcg/tcg-common.c',
1630 'tcg/tcg-op-gvec.c',
1631 'tcg/tcg-op-vec.c',
1632 'tcg/tcg-op.c',
1633 'tcg/tcg.c',
1634))
1635specific_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('disas/tci.c', 'tcg/tci.c'))
1636
Marc-André Lureauab318052019-07-24 19:23:16 +04001637subdir('backends')
Marc-André Lureauc574e162019-07-26 12:02:31 +04001638subdir('disas')
Marc-André Lureau55166232019-07-24 19:16:22 +04001639subdir('migration')
Paolo Bonziniff219dc2020-08-04 21:14:26 +02001640subdir('monitor')
Marc-André Lureaucdaf0722019-07-22 23:47:50 +04001641subdir('net')
Marc-André Lureau17ef2af2019-07-22 23:40:45 +04001642subdir('replay')
Marc-André Lureau582ea952019-08-15 15:15:32 +04001643subdir('hw')
Marc-André Lureau1a828782019-08-18 16:13:08 +04001644subdir('accel')
Paolo Bonzinif556b4a2020-01-24 13:08:01 +01001645subdir('plugins')
Marc-André Lureaub309c322019-08-18 19:20:37 +04001646subdir('bsd-user')
Marc-André Lureau3a304462019-08-18 16:13:08 +04001647subdir('linux-user')
1648
Marc-André Lureaub309c322019-08-18 19:20:37 +04001649bsd_user_ss.add(files('gdbstub.c'))
1650specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)
1651
Marc-André Lureau3a304462019-08-18 16:13:08 +04001652linux_user_ss.add(files('gdbstub.c', 'thunk.c'))
1653specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)
Paolo Bonzini5d3ea0e2020-08-06 13:40:26 +02001654
Paolo Bonzinia2ce7db2020-08-04 20:00:40 +02001655# needed for fuzzing binaries
1656subdir('tests/qtest/libqos')
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001657subdir('tests/qtest/fuzz')
Paolo Bonzinia2ce7db2020-08-04 20:00:40 +02001658
Paolo Bonzinia0c91622020-10-07 11:01:51 -04001659########################
1660# Library dependencies #
1661########################
1662
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001663block_mods = []
1664softmmu_mods = []
1665foreach d, list : modules
1666 foreach m, module_ss : list
1667 if enable_modules and targetos != 'windows'
Gerd Hoffmann3e292c52020-09-14 15:42:20 +02001668 module_ss = module_ss.apply(config_all, strict: false)
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001669 sl = static_library(d + '-' + m, [genh, module_ss.sources()],
1670 dependencies: [modulecommon, module_ss.dependencies()], pic: true)
1671 if d == 'block'
1672 block_mods += sl
1673 else
1674 softmmu_mods += sl
1675 endif
1676 else
1677 if d == 'block'
1678 block_ss.add_all(module_ss)
1679 else
1680 softmmu_ss.add_all(module_ss)
1681 endif
1682 endif
1683 endforeach
1684endforeach
1685
1686nm = find_program('nm')
Yonggang Luo604f3e42020-09-03 01:00:50 +08001687undefsym = find_program('scripts/undefsym.py')
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001688block_syms = custom_target('block.syms', output: 'block.syms',
1689 input: [libqemuutil, block_mods],
1690 capture: true,
1691 command: [undefsym, nm, '@INPUT@'])
1692qemu_syms = custom_target('qemu.syms', output: 'qemu.syms',
1693 input: [libqemuutil, softmmu_mods],
1694 capture: true,
1695 command: [undefsym, nm, '@INPUT@'])
1696
Philippe Mathieu-Daudéda33fc02020-10-06 14:56:02 +02001697qom_ss = qom_ss.apply(config_host, strict: false)
1698libqom = static_library('qom', qom_ss.sources() + genh,
1699 dependencies: [qom_ss.dependencies()],
1700 name_suffix: 'fa')
1701
1702qom = declare_dependency(link_whole: libqom)
1703
Philippe Mathieu-Daudé55567892020-10-06 14:56:01 +02001704authz_ss = authz_ss.apply(config_host, strict: false)
1705libauthz = static_library('authz', authz_ss.sources() + genh,
1706 dependencies: [authz_ss.dependencies()],
1707 name_suffix: 'fa',
1708 build_by_default: false)
1709
1710authz = declare_dependency(link_whole: libauthz,
1711 dependencies: qom)
1712
Philippe Mathieu-Daudé23893042020-10-06 14:56:00 +02001713crypto_ss = crypto_ss.apply(config_host, strict: false)
1714libcrypto = static_library('crypto', crypto_ss.sources() + genh,
1715 dependencies: [crypto_ss.dependencies()],
1716 name_suffix: 'fa',
1717 build_by_default: false)
1718
1719crypto = declare_dependency(link_whole: libcrypto,
1720 dependencies: [authz, qom])
1721
Philippe Mathieu-Daudéf78536b2020-10-06 14:55:59 +02001722io_ss = io_ss.apply(config_host, strict: false)
1723libio = static_library('io', io_ss.sources() + genh,
1724 dependencies: [io_ss.dependencies()],
1725 link_with: libqemuutil,
1726 name_suffix: 'fa',
1727 build_by_default: false)
1728
1729io = declare_dependency(link_whole: libio, dependencies: [crypto, qom])
1730
Philippe Mathieu-Daudé7e6edef2020-10-06 14:55:58 +02001731libmigration = static_library('migration', sources: migration_files + genh,
1732 name_suffix: 'fa',
1733 build_by_default: false)
1734migration = declare_dependency(link_with: libmigration,
1735 dependencies: [zlib, qom, io])
1736softmmu_ss.add(migration)
1737
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04001738block_ss = block_ss.apply(config_host, strict: false)
1739libblock = static_library('block', block_ss.sources() + genh,
1740 dependencies: block_ss.dependencies(),
1741 link_depends: block_syms,
1742 name_suffix: 'fa',
1743 build_by_default: false)
1744
1745block = declare_dependency(link_whole: [libblock],
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04001746 link_args: '@block.syms',
1747 dependencies: [crypto, io])
Marc-André Lureau5e5733e2019-08-29 22:34:43 +04001748
Stefan Hajnoczi4fb90712020-09-29 13:55:14 +01001749blockdev_ss = blockdev_ss.apply(config_host, strict: false)
1750libblockdev = static_library('blockdev', blockdev_ss.sources() + genh,
1751 dependencies: blockdev_ss.dependencies(),
1752 name_suffix: 'fa',
1753 build_by_default: false)
1754
1755blockdev = declare_dependency(link_whole: [libblockdev],
1756 dependencies: [block])
1757
Paolo Bonziniff219dc2020-08-04 21:14:26 +02001758qmp_ss = qmp_ss.apply(config_host, strict: false)
1759libqmp = static_library('qmp', qmp_ss.sources() + genh,
1760 dependencies: qmp_ss.dependencies(),
1761 name_suffix: 'fa',
1762 build_by_default: false)
1763
1764qmp = declare_dependency(link_whole: [libqmp])
1765
Philippe Mathieu-Daudéc2306d72020-10-06 14:55:57 +02001766libchardev = static_library('chardev', chardev_ss.sources() + genh,
1767 name_suffix: 'fa',
1768 build_by_default: false)
1769
1770chardev = declare_dependency(link_whole: libchardev)
1771
Philippe Mathieu-Daudée28ab092020-10-06 14:55:56 +02001772libhwcore = static_library('hwcore', sources: hwcore_files + genh,
1773 name_suffix: 'fa',
1774 build_by_default: false)
1775hwcore = declare_dependency(link_whole: libhwcore)
1776common_ss.add(hwcore)
1777
Philippe Mathieu-Daudé064f8ee2020-10-06 14:55:54 +02001778###########
1779# Targets #
1780###########
1781
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001782foreach m : block_mods + softmmu_mods
1783 shared_module(m.name(),
1784 name_prefix: '',
1785 link_whole: m,
1786 install: true,
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04001787 install_dir: qemu_moddir)
Marc-André Lureau3154fee2019-08-29 22:07:01 +04001788endforeach
1789
Stefan Hajnoczi4fb90712020-09-29 13:55:14 +01001790softmmu_ss.add(authz, blockdev, chardev, crypto, io, qmp)
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001791common_ss.add(qom, qemuutil)
1792
1793common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss])
Paolo Bonzini2becc362020-02-03 11:42:03 +01001794common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss)
1795
1796common_all = common_ss.apply(config_all, strict: false)
1797common_all = static_library('common',
1798 build_by_default: false,
1799 sources: common_all.sources() + genh,
1800 dependencies: common_all.dependencies(),
1801 name_suffix: 'fa')
1802
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001803feature_to_c = find_program('scripts/feature_to_c.sh')
1804
Paolo Bonzinifd5eef82020-09-16 05:00:53 -04001805emulators = {}
Paolo Bonzini2becc362020-02-03 11:42:03 +01001806foreach target : target_dirs
1807 config_target = config_target_mak[target]
1808 target_name = config_target['TARGET_NAME']
1809 arch = config_target['TARGET_BASE_ARCH']
Paolo Bonzini859aef02020-08-04 18:14:26 +02001810 arch_srcs = [config_target_h[target]]
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001811 arch_deps = []
1812 c_args = ['-DNEED_CPU_H',
1813 '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
1814 '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
Paolo Bonzinib6c7cfd2020-09-21 04:49:50 -04001815 link_args = emulator_link_args
Paolo Bonzini2becc362020-02-03 11:42:03 +01001816
Paolo Bonzini859aef02020-08-04 18:14:26 +02001817 config_target += config_host
Paolo Bonzini2becc362020-02-03 11:42:03 +01001818 target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
1819 if targetos == 'linux'
1820 target_inc += include_directories('linux-headers', is_system: true)
1821 endif
1822 if target.endswith('-softmmu')
1823 qemu_target_name = 'qemu-system-' + target_name
1824 target_type='system'
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001825 t = target_softmmu_arch[arch].apply(config_target, strict: false)
1826 arch_srcs += t.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001827 arch_deps += t.dependencies()
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001828
Marc-André Lureau2c442202019-08-17 13:55:58 +04001829 hw_dir = target_name == 'sparc64' ? 'sparc64' : arch
1830 hw = hw_arch[hw_dir].apply(config_target, strict: false)
1831 arch_srcs += hw.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001832 arch_deps += hw.dependencies()
Marc-André Lureau2c442202019-08-17 13:55:58 +04001833
Paolo Bonzini2becc362020-02-03 11:42:03 +01001834 arch_srcs += config_devices_h[target]
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001835 link_args += ['@block.syms', '@qemu.syms']
Paolo Bonzini2becc362020-02-03 11:42:03 +01001836 else
Marc-André Lureau3a304462019-08-18 16:13:08 +04001837 abi = config_target['TARGET_ABI_DIR']
Paolo Bonzini2becc362020-02-03 11:42:03 +01001838 target_type='user'
1839 qemu_target_name = 'qemu-' + target_name
1840 if 'CONFIG_LINUX_USER' in config_target
1841 base_dir = 'linux-user'
1842 target_inc += include_directories('linux-user/host/' / config_host['ARCH'])
1843 else
1844 base_dir = 'bsd-user'
1845 endif
1846 target_inc += include_directories(
1847 base_dir,
Marc-André Lureau3a304462019-08-18 16:13:08 +04001848 base_dir / abi,
Paolo Bonzini2becc362020-02-03 11:42:03 +01001849 )
Marc-André Lureau3a304462019-08-18 16:13:08 +04001850 if 'CONFIG_LINUX_USER' in config_target
1851 dir = base_dir / abi
1852 arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c')
1853 if config_target.has_key('TARGET_SYSTBL_ABI')
1854 arch_srcs += \
1855 syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'],
1856 extra_args : config_target['TARGET_SYSTBL_ABI'])
1857 endif
1858 endif
Paolo Bonzini2becc362020-02-03 11:42:03 +01001859 endif
1860
Marc-André Lureauc9322ab2019-08-18 19:51:17 +04001861 if 'TARGET_XML_FILES' in config_target
1862 gdbstub_xml = custom_target(target + '-gdbstub-xml.c',
1863 output: target + '-gdbstub-xml.c',
1864 input: files(config_target['TARGET_XML_FILES'].split()),
1865 command: [feature_to_c, '@INPUT@'],
1866 capture: true)
1867 arch_srcs += gdbstub_xml
1868 endif
1869
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001870 t = target_arch[arch].apply(config_target, strict: false)
1871 arch_srcs += t.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001872 arch_deps += t.dependencies()
Paolo Bonziniabff1ab2020-08-07 12:10:23 +02001873
Paolo Bonzini2becc362020-02-03 11:42:03 +01001874 target_common = common_ss.apply(config_target, strict: false)
1875 objects = common_all.extract_objects(target_common.sources())
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001876 deps = target_common.dependencies()
Paolo Bonzini2becc362020-02-03 11:42:03 +01001877
Paolo Bonzini2becc362020-02-03 11:42:03 +01001878 target_specific = specific_ss.apply(config_target, strict: false)
1879 arch_srcs += target_specific.sources()
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001880 arch_deps += target_specific.dependencies()
Paolo Bonzini2becc362020-02-03 11:42:03 +01001881
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001882 lib = static_library('qemu-' + target,
Paolo Bonzini859aef02020-08-04 18:14:26 +02001883 sources: arch_srcs + genh,
Paolo Bonzinib7612f42020-08-26 08:22:58 +02001884 dependencies: arch_deps,
Paolo Bonzini2becc362020-02-03 11:42:03 +01001885 objects: objects,
1886 include_directories: target_inc,
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001887 c_args: c_args,
1888 build_by_default: false,
Paolo Bonzini2becc362020-02-03 11:42:03 +01001889 name_suffix: 'fa')
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001890
1891 if target.endswith('-softmmu')
1892 execs = [{
1893 'name': 'qemu-system-' + target_name,
1894 'gui': false,
1895 'sources': files('softmmu/main.c'),
1896 'dependencies': []
1897 }]
Paolo Bonzini35be72b2020-02-06 14:17:15 +01001898 if targetos == 'windows' and (sdl.found() or gtk.found())
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001899 execs += [{
1900 'name': 'qemu-system-' + target_name + 'w',
1901 'gui': true,
1902 'sources': files('softmmu/main.c'),
1903 'dependencies': []
1904 }]
1905 endif
1906 if config_host.has_key('CONFIG_FUZZ')
1907 specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false)
1908 execs += [{
1909 'name': 'qemu-fuzz-' + target_name,
1910 'gui': false,
1911 'sources': specific_fuzz.sources(),
1912 'dependencies': specific_fuzz.dependencies(),
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001913 }]
1914 endif
1915 else
1916 execs = [{
1917 'name': 'qemu-' + target_name,
1918 'gui': false,
1919 'sources': [],
1920 'dependencies': []
1921 }]
1922 endif
1923 foreach exe: execs
Paolo Bonzinifd5eef82020-09-16 05:00:53 -04001924 emulators += {exe['name']:
1925 executable(exe['name'], exe['sources'],
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001926 install: true,
1927 c_args: c_args,
1928 dependencies: arch_deps + deps + exe['dependencies'],
1929 objects: lib.extract_all_objects(recursive: true),
1930 link_language: link_language,
1931 link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []),
1932 link_args: link_args,
1933 gui_app: exe['gui'])
Paolo Bonzinifd5eef82020-09-16 05:00:53 -04001934 }
Marc-André Lureau10e1d262019-08-20 12:29:52 +04001935
1936 if 'CONFIG_TRACE_SYSTEMTAP' in config_host
1937 foreach stp: [
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02001938 {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false},
1939 {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / exe['name'], 'install': true},
Marc-André Lureau10e1d262019-08-20 12:29:52 +04001940 {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true},
1941 {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true},
1942 ]
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02001943 custom_target(exe['name'] + stp['ext'],
Marc-André Lureau10e1d262019-08-20 12:29:52 +04001944 input: trace_events_all,
Stefan Hajnoczibd5f9732020-08-25 08:49:53 +02001945 output: exe['name'] + stp['ext'],
Marc-André Lureau10e1d262019-08-20 12:29:52 +04001946 capture: true,
1947 install: stp['install'],
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04001948 install_dir: get_option('datadir') / 'systemtap/tapset',
Marc-André Lureau10e1d262019-08-20 12:29:52 +04001949 command: [
1950 tracetool, '--group=all', '--format=' + stp['fmt'],
1951 '--binary=' + stp['bin'],
1952 '--target-name=' + target_name,
1953 '--target-type=' + target_type,
1954 '--probe-prefix=qemu.' + target_type + '.' + target_name,
1955 '@INPUT@',
1956 ])
1957 endforeach
1958 endif
Paolo Bonzini64ed6f92020-08-03 17:04:25 +02001959 endforeach
Paolo Bonzini2becc362020-02-03 11:42:03 +01001960endforeach
1961
Paolo Bonzini931049b2020-02-05 09:44:24 +01001962# Other build targets
Marc-André Lureau897b5af2019-07-16 21:54:15 +04001963
Paolo Bonzinif556b4a2020-01-24 13:08:01 +01001964if 'CONFIG_PLUGIN' in config_host
1965 install_headers('include/qemu/qemu-plugin.h')
1966endif
1967
Paolo Bonzinif15bff22019-07-18 13:19:02 +02001968if 'CONFIG_GUEST_AGENT' in config_host
1969 subdir('qga')
1970endif
1971
Laurent Vivier9755c942020-08-24 17:24:30 +02001972# Don't build qemu-keymap if xkbcommon is not explicitly enabled
1973# when we don't build tools or system
Laurent Vivier4113f4c2020-08-24 17:24:29 +02001974if xkbcommon.found()
Marc-André Lureau28742462019-09-19 20:24:43 +04001975 # used for the update-keymaps target, so include rules even if !have_tools
1976 qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh,
1977 dependencies: [qemuutil, xkbcommon], install: have_tools)
1978endif
1979
Paolo Bonzini931049b2020-02-05 09:44:24 +01001980if have_tools
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04001981 qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep],
1982 dependencies: [authz, block, crypto, io, qom, qemuutil], install: true)
1983 qemu_io = executable('qemu-io', files('qemu-io.c'),
1984 dependencies: [block, qemuutil], install: true)
Daniel P. Berrangéeb705982020-08-25 11:38:50 +01001985 qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'),
Stefan Hajnoczicbc20bf2020-09-29 13:55:15 +01001986 dependencies: [blockdev, qemuutil], install: true)
Marc-André Lureaub7c70bf2019-07-16 21:37:25 +04001987
Paolo Bonzini7c58bb72020-08-04 20:18:36 +02001988 subdir('storage-daemon')
Paolo Bonzinia9c97272019-06-10 12:27:52 +02001989 subdir('contrib/rdmacm-mux')
Marc-André Lureau1d7bb6a2019-07-12 23:47:06 +04001990 subdir('contrib/elf2dmp')
Paolo Bonzinia9c97272019-06-10 12:27:52 +02001991
Marc-André Lureau157e7b12019-07-15 14:50:58 +04001992 executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'),
1993 dependencies: qemuutil,
1994 install: true)
1995
Paolo Bonzini931049b2020-02-05 09:44:24 +01001996 if 'CONFIG_VHOST_USER' in config_host
Paolo Bonzini2d7ac0a2019-06-10 12:18:02 +02001997 subdir('contrib/vhost-user-blk')
Paolo Bonzinib7612f42020-08-26 08:22:58 +02001998 subdir('contrib/vhost-user-gpu')
Marc-André Lureau32fcc622019-07-12 22:11:20 +04001999 subdir('contrib/vhost-user-input')
Paolo Bonzini99650b62019-06-10 12:21:14 +02002000 subdir('contrib/vhost-user-scsi')
Paolo Bonzini931049b2020-02-05 09:44:24 +01002001 endif
Marc-André Lureau8f51e012019-07-15 14:39:25 +04002002
2003 if targetos == 'linux'
2004 executable('qemu-bridge-helper', files('qemu-bridge-helper.c'),
2005 dependencies: [qemuutil, libcap_ng],
2006 install: true,
2007 install_dir: get_option('libexecdir'))
Marc-André Lureau897b5af2019-07-16 21:54:15 +04002008
2009 executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'),
2010 dependencies: [authz, crypto, io, qom, qemuutil,
Paolo Bonzini6ec0e152020-09-16 18:07:29 +02002011 libcap_ng, mpathpersist],
Marc-André Lureau897b5af2019-07-16 21:54:15 +04002012 install: true)
Marc-André Lureau8f51e012019-07-15 14:39:25 +04002013 endif
2014
Marc-André Lureau5ee24e72019-07-12 23:16:54 +04002015 if 'CONFIG_IVSHMEM' in config_host
2016 subdir('contrib/ivshmem-client')
2017 subdir('contrib/ivshmem-server')
2018 endif
Paolo Bonzini931049b2020-02-05 09:44:24 +01002019endif
2020
Marc-André Lureauf5aa6322020-08-26 17:06:18 +04002021subdir('scripts')
Paolo Bonzini3f99cf52020-02-05 09:45:39 +01002022subdir('tools')
Marc-André Lureaubdcbea72019-07-15 21:22:31 +04002023subdir('pc-bios')
Paolo Bonzinif8aa24e2020-08-05 15:49:10 +02002024subdir('docs')
Yonggang Luoe3667662020-10-16 06:06:25 +08002025subdir('tests')
Marc-André Lureaue8f3bd72019-09-19 21:02:09 +04002026if 'CONFIG_GTK' in config_host
2027 subdir('po')
2028endif
Paolo Bonzini3f99cf52020-02-05 09:45:39 +01002029
Marc-André Lureau8adfeba2020-08-26 15:04:19 +04002030if host_machine.system() == 'windows'
2031 nsis_cmd = [
2032 find_program('scripts/nsis.py'),
2033 '@OUTPUT@',
2034 get_option('prefix'),
2035 meson.current_source_dir(),
Stefan Weil24bdcc92020-11-25 20:18:33 +01002036 host_machine.cpu(),
Marc-André Lureau8adfeba2020-08-26 15:04:19 +04002037 '--',
2038 '-DDISPLAYVERSION=' + meson.project_version(),
2039 ]
2040 if build_docs
2041 nsis_cmd += '-DCONFIG_DOCUMENTATION=y'
2042 endif
2043 if 'CONFIG_GTK' in config_host
2044 nsis_cmd += '-DCONFIG_GTK=y'
2045 endif
2046
2047 nsis = custom_target('nsis',
2048 output: 'qemu-setup-' + meson.project_version() + '.exe',
2049 input: files('qemu.nsi'),
2050 build_always_stale: true,
2051 command: nsis_cmd + ['@INPUT@'])
2052 alias_target('installer', nsis)
2053endif
2054
Paolo Bonzinia0c91622020-10-07 11:01:51 -04002055#########################
2056# Configuration summary #
2057#########################
2058
Paolo Bonzinif9332752020-02-03 13:28:38 +01002059summary_info = {}
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04002060summary_info += {'Install prefix': get_option('prefix')}
2061summary_info += {'BIOS directory': qemu_datadir}
2062summary_info += {'firmware path': get_option('qemu_firmwarepath')}
2063summary_info += {'binary directory': get_option('bindir')}
2064summary_info += {'library directory': get_option('libdir')}
2065summary_info += {'module directory': qemu_moddir}
2066summary_info += {'libexec directory': get_option('libexecdir')}
2067summary_info += {'include directory': get_option('includedir')}
2068summary_info += {'config directory': get_option('sysconfdir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002069if targetos != 'windows'
Paolo Bonzini16bf7a32020-10-16 03:19:14 -04002070 summary_info += {'local state directory': get_option('localstatedir')}
Marc-André Lureaub81efab2020-08-26 15:04:18 +04002071 summary_info += {'Manual directory': get_option('mandir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002072else
2073 summary_info += {'local state directory': 'queried at runtime'}
2074endif
Marc-André Lureau491e74c2020-08-26 15:04:17 +04002075summary_info += {'Doc directory': get_option('docdir')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002076summary_info += {'Build directory': meson.current_build_dir()}
2077summary_info += {'Source path': meson.current_source_dir()}
2078summary_info += {'GIT binary': config_host['GIT']}
2079summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']}
2080summary_info += {'C compiler': meson.get_compiler('c').cmd_array()[0]}
2081summary_info += {'Host C compiler': meson.get_compiler('c', native: true).cmd_array()[0]}
2082if link_language == 'cpp'
2083 summary_info += {'C++ compiler': meson.get_compiler('cpp').cmd_array()[0]}
2084else
2085 summary_info += {'C++ compiler': false}
2086endif
2087if targetos == 'darwin'
2088 summary_info += {'Objective-C compiler': meson.get_compiler('objc').cmd_array()[0]}
2089endif
2090summary_info += {'ARFLAGS': config_host['ARFLAGS']}
Paolo Bonzini47b30832020-09-23 05:26:17 -04002091summary_info += {'CFLAGS': ' '.join(get_option('c_args')
2092 + ['-O' + get_option('optimization')]
2093 + (get_option('debug') ? ['-g'] : []))}
2094if link_language == 'cpp'
2095 summary_info += {'CXXFLAGS': ' '.join(get_option('cpp_args')
2096 + ['-O' + get_option('optimization')]
2097 + (get_option('debug') ? ['-g'] : []))}
2098endif
2099link_args = get_option(link_language + '_link_args')
2100if link_args.length() > 0
2101 summary_info += {'LDFLAGS': ' '.join(link_args)}
2102endif
Paolo Bonzinif9332752020-02-03 13:28:38 +01002103summary_info += {'QEMU_CFLAGS': config_host['QEMU_CFLAGS']}
2104summary_info += {'QEMU_LDFLAGS': config_host['QEMU_LDFLAGS']}
2105summary_info += {'make': config_host['MAKE']}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002106summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())}
Yonggang Luoe3667662020-10-16 06:06:25 +08002107summary_info += {'sphinx-build': sphinx_build.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002108summary_info += {'genisoimage': config_host['GENISOIMAGE']}
2109# TODO: add back version
Paolo Bonzini4d34a862020-10-05 11:31:15 +02002110summary_info += {'slirp support': slirp_opt == 'disabled' ? false : slirp_opt}
2111if slirp_opt != 'disabled'
Paolo Bonzinif9332752020-02-03 13:28:38 +01002112 summary_info += {'smbd': config_host['CONFIG_SMBD_COMMAND']}
2113endif
2114summary_info += {'module support': config_host.has_key('CONFIG_MODULES')}
2115if config_host.has_key('CONFIG_MODULES')
2116 summary_info += {'alternative module path': config_host.has_key('CONFIG_MODULE_UPGRADES')}
2117endif
2118summary_info += {'host CPU': cpu}
2119summary_info += {'host endianness': build_machine.endian()}
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002120summary_info += {'target list': ' '.join(target_dirs)}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002121summary_info += {'gprof enabled': config_host.has_key('CONFIG_GPROF')}
Paolo Bonzinideb62372020-09-01 07:51:16 -04002122summary_info += {'sparse enabled': sparse.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002123summary_info += {'strip binaries': get_option('strip')}
2124summary_info += {'profiler': config_host.has_key('CONFIG_PROFILER')}
Daniele Buonocdad7812020-12-04 18:06:11 -05002125summary_info += {'link-time optimization (LTO)': get_option('b_lto')}
Laurent Vivier3e8529d2020-09-17 16:07:00 +02002126summary_info += {'static build': config_host.has_key('CONFIG_STATIC')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002127if targetos == 'darwin'
2128 summary_info += {'Cocoa support': config_host.has_key('CONFIG_COCOA')}
2129endif
2130# TODO: add back version
Paolo Bonzini35be72b2020-02-06 14:17:15 +01002131summary_info += {'SDL support': sdl.found()}
2132summary_info += {'SDL image support': sdl_image.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002133# TODO: add back version
2134summary_info += {'GTK support': config_host.has_key('CONFIG_GTK')}
2135summary_info += {'GTK GL support': config_host.has_key('CONFIG_GTK_GL')}
Paolo Bonzinib7612f42020-08-26 08:22:58 +02002136summary_info += {'pixman': pixman.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002137# TODO: add back version
2138summary_info += {'VTE support': config_host.has_key('CONFIG_VTE')}
2139summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']}
2140summary_info += {'GNUTLS support': config_host.has_key('CONFIG_GNUTLS')}
2141# TODO: add back version
2142summary_info += {'libgcrypt': config_host.has_key('CONFIG_GCRYPT')}
2143if config_host.has_key('CONFIG_GCRYPT')
2144 summary_info += {' hmac': config_host.has_key('CONFIG_GCRYPT_HMAC')}
2145 summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')}
2146endif
2147# TODO: add back version
2148summary_info += {'nettle': config_host.has_key('CONFIG_NETTLE')}
2149if config_host.has_key('CONFIG_NETTLE')
2150 summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')}
2151endif
2152summary_info += {'libtasn1': config_host.has_key('CONFIG_TASN1')}
2153summary_info += {'PAM': config_host.has_key('CONFIG_AUTH_PAM')}
Yonggang Luo5285e592020-10-13 07:43:48 +08002154summary_info += {'iconv support': iconv.found()}
2155summary_info += {'curses support': curses.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002156# TODO: add back version
2157summary_info += {'virgl support': config_host.has_key('CONFIG_VIRGL')}
2158summary_info += {'curl support': config_host.has_key('CONFIG_CURL')}
2159summary_info += {'mingw32 support': targetos == 'windows'}
2160summary_info += {'Audio drivers': config_host['CONFIG_AUDIO_DRIVERS']}
2161summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']}
2162summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']}
2163summary_info += {'VirtFS support': config_host.has_key('CONFIG_VIRTFS')}
Misono Tomohirocece1162020-10-08 19:31:33 +09002164summary_info += {'build virtiofs daemon': have_virtiofsd}
Paolo Bonzini6ec0e152020-09-16 18:07:29 +02002165summary_info += {'Multipath support': mpathpersist.found()}
Paolo Bonzinia0b93232020-02-06 15:48:52 +01002166summary_info += {'VNC support': vnc.found()}
2167if vnc.found()
2168 summary_info += {'VNC SASL support': sasl.found()}
2169 summary_info += {'VNC JPEG support': jpeg.found()}
2170 summary_info += {'VNC PNG support': png.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002171endif
2172summary_info += {'xen support': config_host.has_key('CONFIG_XEN_BACKEND')}
2173if config_host.has_key('CONFIG_XEN_BACKEND')
2174 summary_info += {'xen ctrl version': config_host['CONFIG_XEN_CTRL_INTERFACE_VERSION']}
2175endif
2176summary_info += {'brlapi support': config_host.has_key('CONFIG_BRLAPI')}
Yonggang Luoe3667662020-10-16 06:06:25 +08002177summary_info += {'Documentation': build_docs}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002178summary_info += {'PIE': get_option('b_pie')}
2179summary_info += {'vde support': config_host.has_key('CONFIG_VDE')}
2180summary_info += {'netmap support': config_host.has_key('CONFIG_NETMAP')}
2181summary_info += {'Linux AIO support': config_host.has_key('CONFIG_LINUX_AIO')}
2182summary_info += {'Linux io_uring support': config_host.has_key('CONFIG_LINUX_IO_URING')}
2183summary_info += {'ATTR/XATTR support': config_host.has_key('CONFIG_ATTR')}
Paolo Bonzinic8d54502020-10-16 03:32:52 -04002184summary_info += {'Install blobs': get_option('install_blobs')}
Paolo Bonzini05512f52020-09-16 15:31:11 -04002185summary_info += {'KVM support': config_all.has_key('CONFIG_KVM')}
2186summary_info += {'HAX support': config_all.has_key('CONFIG_HAX')}
2187summary_info += {'HVF support': config_all.has_key('CONFIG_HVF')}
2188summary_info += {'WHPX support': config_all.has_key('CONFIG_WHPX')}
2189summary_info += {'TCG support': config_all.has_key('CONFIG_TCG')}
2190if config_all.has_key('CONFIG_TCG')
2191 summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')}
2192 summary_info += {'TCG interpreter': config_host.has_key('CONFIG_TCG_INTERPRETER')}
2193endif
Paolo Bonziniaa087962020-09-01 11:15:30 -04002194summary_info += {'malloc trim support': has_malloc_trim}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002195summary_info += {'RDMA support': config_host.has_key('CONFIG_RDMA')}
2196summary_info += {'PVRDMA support': config_host.has_key('CONFIG_PVRDMA')}
Paolo Bonzinifbb41212020-10-05 11:31:15 +02002197summary_info += {'fdt support': fdt_opt == 'disabled' ? false : fdt_opt}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002198summary_info += {'membarrier': config_host.has_key('CONFIG_MEMBARRIER')}
2199summary_info += {'preadv support': config_host.has_key('CONFIG_PREADV')}
2200summary_info += {'fdatasync': config_host.has_key('CONFIG_FDATASYNC')}
2201summary_info += {'madvise': config_host.has_key('CONFIG_MADVISE')}
2202summary_info += {'posix_madvise': config_host.has_key('CONFIG_POSIX_MADVISE')}
2203summary_info += {'posix_memalign': config_host.has_key('CONFIG_POSIX_MEMALIGN')}
2204summary_info += {'libcap-ng support': config_host.has_key('CONFIG_LIBCAP_NG')}
Thomas Huthb54b82d2020-11-09 09:59:06 +01002205summary_info += {'vhost-kernel support': config_host.has_key('CONFIG_VHOST_KERNEL')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002206summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')}
2207summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')}
2208summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')}
2209summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')}
Thomas Huthb54b82d2020-11-09 09:59:06 +01002210summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_USER')}
Stefan Hajnoczie5e856c2020-11-10 17:11:19 +00002211summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002212summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')}
2213summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')}
2214summary_info += {'Trace backends': config_host['TRACE_BACKENDS']}
2215if config_host['TRACE_BACKENDS'].split().contains('simple')
2216 summary_info += {'Trace output file': config_host['CONFIG_TRACE_FILE'] + '-<pid>'}
2217endif
2218# TODO: add back protocol and server version
2219summary_info += {'spice support': config_host.has_key('CONFIG_SPICE')}
2220summary_info += {'rbd support': config_host.has_key('CONFIG_RBD')}
2221summary_info += {'xfsctl support': config_host.has_key('CONFIG_XFS')}
2222summary_info += {'smartcard support': config_host.has_key('CONFIG_SMARTCARD')}
César Belley0a40bcb2020-08-26 13:42:04 +02002223summary_info += {'U2F support': u2f.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002224summary_info += {'libusb': config_host.has_key('CONFIG_USB_LIBUSB')}
2225summary_info += {'usb net redir': config_host.has_key('CONFIG_USB_REDIR')}
2226summary_info += {'OpenGL support': config_host.has_key('CONFIG_OPENGL')}
2227summary_info += {'OpenGL dmabufs': config_host.has_key('CONFIG_OPENGL_DMABUF')}
2228summary_info += {'libiscsi support': config_host.has_key('CONFIG_LIBISCSI')}
2229summary_info += {'libnfs support': config_host.has_key('CONFIG_LIBNFS')}
2230summary_info += {'build guest agent': config_host.has_key('CONFIG_GUEST_AGENT')}
2231if targetos == 'windows'
2232 if 'WIN_SDK' in config_host
2233 summary_info += {'Windows SDK': config_host['WIN_SDK']}
2234 endif
2235 summary_info += {'QGA VSS support': config_host.has_key('CONFIG_QGA_VSS')}
2236 summary_info += {'QGA w32 disk info': config_host.has_key('CONFIG_QGA_NTDDSCSI')}
Stefan Hajnoczi4bad7c32020-09-14 10:52:31 +01002237 summary_info += {'QGA MSI support': config_host.has_key('CONFIG_QGA_MSI')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002238endif
2239summary_info += {'seccomp support': config_host.has_key('CONFIG_SECCOMP')}
Daniele Buono9e62ba42020-12-04 18:06:14 -05002240summary_info += {'CFI support': get_option('cfi')}
2241summary_info += {'CFI debug support': get_option('cfi_debug')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002242summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']}
2243summary_info += {'coroutine pool': config_host['CONFIG_COROUTINE_POOL'] == '1'}
2244summary_info += {'debug stack usage': config_host.has_key('CONFIG_DEBUG_STACK_USAGE')}
2245summary_info += {'mutex debugging': config_host.has_key('CONFIG_DEBUG_MUTEX')}
2246summary_info += {'crypto afalg': config_host.has_key('CONFIG_AF_ALG')}
2247summary_info += {'GlusterFS support': config_host.has_key('CONFIG_GLUSTERFS')}
Marc-André Lureaubf0e56a2019-10-04 17:35:16 +04002248summary_info += {'gcov': get_option('b_coverage')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002249summary_info += {'TPM support': config_host.has_key('CONFIG_TPM')}
2250summary_info += {'libssh support': config_host.has_key('CONFIG_LIBSSH')}
2251summary_info += {'QOM debugging': config_host.has_key('CONFIG_QOM_CAST_DEBUG')}
2252summary_info += {'Live block migration': config_host.has_key('CONFIG_LIVE_BLOCK_MIGRATION')}
2253summary_info += {'lzo support': config_host.has_key('CONFIG_LZO')}
2254summary_info += {'snappy support': config_host.has_key('CONFIG_SNAPPY')}
2255summary_info += {'bzip2 support': config_host.has_key('CONFIG_BZIP2')}
2256summary_info += {'lzfse support': config_host.has_key('CONFIG_LZFSE')}
2257summary_info += {'zstd support': config_host.has_key('CONFIG_ZSTD')}
2258summary_info += {'NUMA host support': config_host.has_key('CONFIG_NUMA')}
2259summary_info += {'libxml2': config_host.has_key('CONFIG_LIBXML2')}
Paolo Bonziniaa087962020-09-01 11:15:30 -04002260summary_info += {'memory allocator': get_option('malloc')}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002261summary_info += {'avx2 optimization': config_host.has_key('CONFIG_AVX2_OPT')}
2262summary_info += {'avx512f optimization': config_host.has_key('CONFIG_AVX512F_OPT')}
2263summary_info += {'replication support': config_host.has_key('CONFIG_REPLICATION')}
2264summary_info += {'bochs support': config_host.has_key('CONFIG_BOCHS')}
2265summary_info += {'cloop support': config_host.has_key('CONFIG_CLOOP')}
2266summary_info += {'dmg support': config_host.has_key('CONFIG_DMG')}
2267summary_info += {'qcow v1 support': config_host.has_key('CONFIG_QCOW1')}
2268summary_info += {'vdi support': config_host.has_key('CONFIG_VDI')}
2269summary_info += {'vvfat support': config_host.has_key('CONFIG_VVFAT')}
2270summary_info += {'qed support': config_host.has_key('CONFIG_QED')}
2271summary_info += {'parallels support': config_host.has_key('CONFIG_PARALLELS')}
2272summary_info += {'sheepdog support': config_host.has_key('CONFIG_SHEEPDOG')}
Richard Henderson8b18cdb2020-09-13 12:19:25 -07002273summary_info += {'capstone': capstone_opt == 'disabled' ? false : capstone_opt}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002274summary_info += {'libpmem support': config_host.has_key('CONFIG_LIBPMEM')}
2275summary_info += {'libdaxctl support': config_host.has_key('CONFIG_LIBDAXCTL')}
Paolo Bonzinif01496a2020-09-16 17:54:14 +02002276summary_info += {'libudev': libudev.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002277summary_info += {'default devices': config_host['CONFIG_MINIKCONF_MODE'] == '--defconfig'}
2278summary_info += {'plugin support': config_host.has_key('CONFIG_PLUGIN')}
2279summary_info += {'fuzzing support': config_host.has_key('CONFIG_FUZZ')}
2280if config_host.has_key('HAVE_GDB_BIN')
2281 summary_info += {'gdb': config_host['HAVE_GDB_BIN']}
2282endif
2283summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')}
2284summary_info += {'rng-none': config_host.has_key('CONFIG_RNG_NONE')}
2285summary_info += {'Linux keyring': config_host.has_key('CONFIG_SECRET_KEYRING')}
Max Reitza484a712020-10-27 20:05:41 +01002286summary_info += {'FUSE exports': fuse.found()}
Max Reitzdf4ea702020-10-27 20:05:46 +01002287summary_info += {'FUSE lseek': fuse_lseek.found()}
Paolo Bonzinif9332752020-02-03 13:28:38 +01002288summary(summary_info, bool_yn: true)
2289
2290if not supported_cpus.contains(cpu)
2291 message()
2292 warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!')
2293 message()
2294 message('CPU host architecture ' + cpu + ' support is not currently maintained.')
2295 message('The QEMU project intends to remove support for this host CPU in')
2296 message('a future release if nobody volunteers to maintain it and to')
2297 message('provide a build host for our continuous integration setup.')
2298 message('configure has succeeded and you can continue to build, but')
2299 message('if you care about QEMU on this platform you should contact')
2300 message('us upstream at qemu-devel@nongnu.org.')
2301endif
2302
2303if not supported_oses.contains(targetos)
2304 message()
2305 warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!')
2306 message()
2307 message('Host OS ' + targetos + 'support is not currently maintained.')
2308 message('The QEMU project intends to remove support for this host OS in')
2309 message('a future release if nobody volunteers to maintain it and to')
2310 message('provide a build host for our continuous integration setup.')
2311 message('configure has succeeded and you can continue to build, but')
2312 message('if you care about QEMU on this platform you should contact')
2313 message('us upstream at qemu-devel@nongnu.org.')
2314endif