]>
Commit | Line | Data |
---|---|---|
a5665051 | 1 | project('qemu', ['c'], meson_version: '>=0.55.0', |
90756b2f | 2 | default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11', |
3e0e5190 | 3 | 'b_colorout=auto'], |
a5665051 PB |
4 | version: run_command('head', meson.source_root() / 'VERSION').stdout().strip()) |
5 | ||
6 | not_found = dependency('', required: false) | |
b29b40f4 PB |
7 | if meson.version().version_compare('>=0.56.0') |
8 | keyval = import('keyval') | |
9 | else | |
10 | keyval = import('unstable-keyval') | |
11 | endif | |
a81df1b6 PB |
12 | ss = import('sourceset') |
13 | ||
ce1c1e7a | 14 | sh = find_program('sh') |
a81df1b6 | 15 | cc = meson.get_compiler('c') |
a5665051 | 16 | config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') |
3154fee4 | 17 | enable_modules = 'CONFIG_MODULES' in config_host |
35be72ba | 18 | enable_static = 'CONFIG_STATIC' in config_host |
f8aa24ea | 19 | build_docs = 'BUILD_DOCS' in config_host |
8fe11232 MAL |
20 | |
21 | if get_option('qemu_suffix').startswith('/') | |
22 | error('qemu_suffix cannot start with a /') | |
23 | endif | |
24 | ||
ab4c0996 | 25 | qemu_datadir = get_option('datadir') / get_option('qemu_suffix') |
491e74c1 | 26 | qemu_docdir = get_option('docdir') / get_option('qemu_suffix') |
859aef02 PB |
27 | config_host_data = configuration_data() |
28 | genh = [] | |
a5665051 | 29 | |
760e4327 PB |
30 | target_dirs = config_host['TARGET_DIRS'].split() |
31 | have_user = false | |
32 | have_system = false | |
33 | foreach target : target_dirs | |
34 | have_user = have_user or target.endswith('-user') | |
35 | have_system = have_system or target.endswith('-softmmu') | |
36 | endforeach | |
37 | have_tools = 'CONFIG_TOOLS' in config_host | |
38 | have_block = have_system or have_tools | |
39 | ||
201e8ed7 PB |
40 | python = import('python').find_installation() |
41 | ||
42 | supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux'] | |
43 | supported_cpus = ['ppc', 'ppc64', 's390x', 'sparc64', 'riscv32', 'riscv64', 'x86', 'x86_64', | |
44 | 'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64'] | |
45 | ||
46 | cpu = host_machine.cpu_family() | |
47 | targetos = host_machine.system() | |
48 | ||
49 | configure_file(input: files('scripts/ninjatool.py'), | |
50 | output: 'ninjatool', | |
51 | configuration: config_host) | |
52 | ||
53 | ################## | |
54 | # Compiler flags # | |
55 | ################## | |
56 | ||
a5665051 PB |
57 | add_project_arguments(config_host['QEMU_CFLAGS'].split(), |
58 | native: false, language: ['c', 'objc']) | |
59 | add_project_arguments(config_host['QEMU_CXXFLAGS'].split(), | |
60 | native: false, language: 'cpp') | |
61 | add_project_link_arguments(config_host['QEMU_LDFLAGS'].split(), | |
62 | native: false, language: ['c', 'cpp', 'objc']) | |
63 | add_project_arguments(config_host['QEMU_INCLUDES'].split(), | |
64 | language: ['c', 'cpp', 'objc']) | |
65 | ||
c46f76d1 AB |
66 | # Specify linker-script with add_project_link_arguments so that it is not placed |
67 | # within a linker --start-group/--end-group pair | |
68 | if 'CONFIG_FUZZ' in config_host | |
69 | add_project_link_arguments(['-Wl,-T,', | |
70 | (meson.current_source_dir() / 'tests/qtest/fuzz/fork_fuzz.ld')], | |
71 | native: false, language: ['c', 'cpp', 'objc']) | |
72 | endif | |
73 | ||
fc929892 MAL |
74 | link_language = meson.get_external_property('link_language', 'cpp') |
75 | if link_language == 'cpp' | |
76 | add_languages('cpp', required: true, native: false) | |
77 | endif | |
a5665051 PB |
78 | if host_machine.system() == 'darwin' |
79 | add_languages('objc', required: false, native: false) | |
80 | endif | |
81 | ||
968b4db3 PB |
82 | if 'SPARSE_CFLAGS' in config_host |
83 | run_target('sparse', | |
84 | command: [find_program('scripts/check_sparse.py'), | |
85 | config_host['SPARSE_CFLAGS'].split(), | |
86 | 'compile_commands.json']) | |
87 | endif | |
88 | ||
a81df1b6 PB |
89 | m = cc.find_library('m', required: false) |
90 | util = cc.find_library('util', required: false) | |
4a96337d | 91 | winmm = [] |
a81df1b6 | 92 | socket = [] |
04c6f1e7 | 93 | version_res = [] |
d92989aa MAL |
94 | coref = [] |
95 | iokit = [] | |
96 | cocoa = [] | |
97 | hvf = [] | |
a81df1b6 PB |
98 | if targetos == 'windows' |
99 | socket = cc.find_library('ws2_32') | |
4a96337d | 100 | winmm = cc.find_library('winmm') |
04c6f1e7 MAL |
101 | |
102 | win = import('windows') | |
103 | version_res = win.compile_resources('version.rc', | |
104 | depend_files: files('pc-bios/qemu-nsis.ico'), | |
105 | include_directories: include_directories('.')) | |
d92989aa MAL |
106 | elif targetos == 'darwin' |
107 | coref = dependency('appleframeworks', modules: 'CoreFoundation') | |
108 | iokit = dependency('appleframeworks', modules: 'IOKit') | |
109 | cocoa = dependency('appleframeworks', modules: 'Cocoa') | |
110 | hvf = dependency('appleframeworks', modules: 'Hypervisor') | |
cfad62f1 PB |
111 | elif targetos == 'sunos' |
112 | socket = [cc.find_library('socket'), | |
113 | cc.find_library('nsl'), | |
114 | cc.find_library('resolv')] | |
115 | elif targetos == 'haiku' | |
116 | socket = [cc.find_library('posix_error_mapper'), | |
117 | cc.find_library('network'), | |
118 | cc.find_library('bsd')] | |
a81df1b6 | 119 | endif |
215b0c2f PB |
120 | # The path to glib.h is added to all compilation commands. This was |
121 | # grandfathered in from the QEMU Makefiles. | |
122 | add_project_arguments(config_host['GLIB_CFLAGS'].split(), | |
123 | native: false, language: ['c', 'cpp', 'objc']) | |
124 | glib = declare_dependency(link_args: config_host['GLIB_LIBS'].split()) | |
a81df1b6 PB |
125 | gio = not_found |
126 | if 'CONFIG_GIO' in config_host | |
127 | gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(), | |
128 | link_args: config_host['GIO_LIBS'].split()) | |
129 | endif | |
130 | lttng = not_found | |
131 | if 'CONFIG_TRACE_UST' in config_host | |
132 | lttng = declare_dependency(link_args: config_host['LTTNG_UST_LIBS'].split()) | |
133 | endif | |
134 | urcubp = not_found | |
135 | if 'CONFIG_TRACE_UST' in config_host | |
136 | urcubp = declare_dependency(link_args: config_host['URCU_BP_LIBS'].split()) | |
137 | endif | |
46859d93 DB |
138 | gcrypt = not_found |
139 | if 'CONFIG_GCRYPT' in config_host | |
140 | gcrypt = declare_dependency(compile_args: config_host['GCRYPT_CFLAGS'].split(), | |
141 | link_args: config_host['GCRYPT_LIBS'].split()) | |
142 | endif | |
a81df1b6 PB |
143 | nettle = not_found |
144 | if 'CONFIG_NETTLE' in config_host | |
145 | nettle = declare_dependency(compile_args: config_host['NETTLE_CFLAGS'].split(), | |
146 | link_args: config_host['NETTLE_LIBS'].split()) | |
147 | endif | |
148 | gnutls = not_found | |
149 | if 'CONFIG_GNUTLS' in config_host | |
150 | gnutls = declare_dependency(compile_args: config_host['GNUTLS_CFLAGS'].split(), | |
151 | link_args: config_host['GNUTLS_LIBS'].split()) | |
152 | endif | |
b7612f45 PB |
153 | pixman = not_found |
154 | if have_system or have_tools | |
155 | pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8', | |
1a94933f | 156 | method: 'pkg-config', static: enable_static) |
b7612f45 | 157 | endif |
5e7fbd25 MAL |
158 | pam = not_found |
159 | if 'CONFIG_AUTH_PAM' in config_host | |
160 | pam = cc.find_library('pam') | |
161 | endif | |
5e5733e5 | 162 | libaio = cc.find_library('aio', required: false) |
1ffb3bbb | 163 | zlib = dependency('zlib', required: true, static: enable_static) |
5e5733e5 MAL |
164 | linux_io_uring = not_found |
165 | if 'CONFIG_LINUX_IO_URING' in config_host | |
166 | linux_io_uring = declare_dependency(compile_args: config_host['LINUX_IO_URING_CFLAGS'].split(), | |
167 | link_args: config_host['LINUX_IO_URING_LIBS'].split()) | |
168 | endif | |
169 | libxml2 = not_found | |
170 | if 'CONFIG_LIBXML2' in config_host | |
171 | libxml2 = declare_dependency(compile_args: config_host['LIBXML2_CFLAGS'].split(), | |
172 | link_args: config_host['LIBXML2_LIBS'].split()) | |
173 | endif | |
174 | libnfs = not_found | |
175 | if 'CONFIG_LIBNFS' in config_host | |
176 | libnfs = declare_dependency(link_args: config_host['LIBNFS_LIBS'].split()) | |
177 | endif | |
ec0d5893 MAL |
178 | libattr = not_found |
179 | if 'CONFIG_ATTR' in config_host | |
180 | libattr = declare_dependency(link_args: config_host['LIBATTR_LIBS'].split()) | |
181 | endif | |
3f99cf57 PB |
182 | seccomp = not_found |
183 | if 'CONFIG_SECCOMP' in config_host | |
184 | seccomp = declare_dependency(compile_args: config_host['SECCOMP_CFLAGS'].split(), | |
185 | link_args: config_host['SECCOMP_LIBS'].split()) | |
186 | endif | |
187 | libcap_ng = not_found | |
188 | if 'CONFIG_LIBCAP_NG' in config_host | |
189 | libcap_ng = declare_dependency(link_args: config_host['LIBCAP_NG_LIBS'].split()) | |
190 | endif | |
1917ec6d PB |
191 | if get_option('xkbcommon').auto() and not have_system and not have_tools |
192 | xkbcommon = not_found | |
193 | else | |
194 | xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'), | |
1a94933f | 195 | method: 'pkg-config', static: enable_static) |
ade60d4f | 196 | endif |
cdaf0722 MAL |
197 | slirp = not_found |
198 | if config_host.has_key('CONFIG_SLIRP') | |
199 | slirp = declare_dependency(compile_args: config_host['SLIRP_CFLAGS'].split(), | |
200 | link_args: config_host['SLIRP_LIBS'].split()) | |
201 | endif | |
202 | vde = not_found | |
203 | if config_host.has_key('CONFIG_VDE') | |
204 | vde = declare_dependency(link_args: config_host['VDE_LIBS'].split()) | |
205 | endif | |
478e943f PB |
206 | pulse = not_found |
207 | if 'CONFIG_LIBPULSE' in config_host | |
208 | pulse = declare_dependency(compile_args: config_host['PULSE_CFLAGS'].split(), | |
209 | link_args: config_host['PULSE_LIBS'].split()) | |
210 | endif | |
211 | alsa = not_found | |
212 | if 'CONFIG_ALSA' in config_host | |
213 | alsa = declare_dependency(compile_args: config_host['ALSA_CFLAGS'].split(), | |
214 | link_args: config_host['ALSA_LIBS'].split()) | |
215 | endif | |
216 | jack = not_found | |
217 | if 'CONFIG_LIBJACK' in config_host | |
218 | jack = declare_dependency(link_args: config_host['JACK_LIBS'].split()) | |
219 | endif | |
2634733c PB |
220 | spice = not_found |
221 | if 'CONFIG_SPICE' in config_host | |
222 | spice = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split(), | |
223 | link_args: config_host['SPICE_LIBS'].split()) | |
224 | endif | |
5ee24e78 | 225 | rt = cc.find_library('rt', required: false) |
897b5afa MAL |
226 | libmpathpersist = not_found |
227 | if config_host.has_key('CONFIG_MPATH') | |
228 | libmpathpersist = cc.find_library('mpathpersist') | |
229 | endif | |
ccf7afa5 PB |
230 | libdl = not_found |
231 | if 'CONFIG_PLUGIN' in config_host | |
232 | libdl = cc.find_library('dl', required: true) | |
233 | endif | |
99650b62 PB |
234 | libiscsi = not_found |
235 | if 'CONFIG_LIBISCSI' in config_host | |
236 | libiscsi = declare_dependency(compile_args: config_host['LIBISCSI_CFLAGS'].split(), | |
237 | link_args: config_host['LIBISCSI_LIBS'].split()) | |
238 | endif | |
5e5733e5 MAL |
239 | zstd = not_found |
240 | if 'CONFIG_ZSTD' in config_host | |
241 | zstd = declare_dependency(compile_args: config_host['ZSTD_CFLAGS'].split(), | |
242 | link_args: config_host['ZSTD_LIBS'].split()) | |
243 | endif | |
ea458960 MAL |
244 | gbm = not_found |
245 | if 'CONFIG_GBM' in config_host | |
246 | gbm = declare_dependency(compile_args: config_host['GBM_CFLAGS'].split(), | |
247 | link_args: config_host['GBM_LIBS'].split()) | |
248 | endif | |
249 | virgl = not_found | |
250 | if 'CONFIG_VIRGL' in config_host | |
251 | virgl = declare_dependency(compile_args: config_host['VIRGL_CFLAGS'].split(), | |
252 | link_args: config_host['VIRGL_LIBS'].split()) | |
253 | endif | |
1d7bb6ab MAL |
254 | curl = not_found |
255 | if 'CONFIG_CURL' in config_host | |
256 | curl = declare_dependency(compile_args: config_host['CURL_CFLAGS'].split(), | |
257 | link_args: config_host['CURL_LIBS'].split()) | |
258 | endif | |
f15bff25 PB |
259 | libudev = not_found |
260 | if 'CONFIG_LIBUDEV' in config_host | |
261 | libudev = declare_dependency(link_args: config_host['LIBUDEV_LIBS'].split()) | |
262 | endif | |
2634733c PB |
263 | brlapi = not_found |
264 | if 'CONFIG_BRLAPI' in config_host | |
265 | brlapi = declare_dependency(link_args: config_host['BRLAPI_LIBS'].split()) | |
266 | endif | |
35be72ba | 267 | |
760e4327 PB |
268 | sdl = not_found |
269 | if have_system | |
363743da | 270 | sdl = dependency('sdl2', required: get_option('sdl'), static: enable_static) |
760e4327 PB |
271 | sdl_image = not_found |
272 | endif | |
35be72ba PB |
273 | if sdl.found() |
274 | # work around 2.0.8 bug | |
275 | sdl = declare_dependency(compile_args: '-Wno-undef', | |
276 | dependencies: sdl) | |
7161a433 | 277 | sdl_image = dependency('SDL2_image', required: get_option('sdl_image'), |
1a94933f | 278 | method: 'pkg-config', static: enable_static) |
35be72ba PB |
279 | else |
280 | if get_option('sdl_image').enabled() | |
a8dc2ace ST |
281 | error('sdl-image required, but SDL was @0@'.format( |
282 | get_option('sdl').disabled() ? 'disabled' : 'not found')) | |
35be72ba PB |
283 | endif |
284 | sdl_image = not_found | |
2634733c | 285 | endif |
35be72ba | 286 | |
5e5733e5 MAL |
287 | rbd = not_found |
288 | if 'CONFIG_RBD' in config_host | |
289 | rbd = declare_dependency(link_args: config_host['RBD_LIBS'].split()) | |
290 | endif | |
291 | glusterfs = not_found | |
292 | if 'CONFIG_GLUSTERFS' in config_host | |
293 | glusterfs = declare_dependency(compile_args: config_host['GLUSTERFS_CFLAGS'].split(), | |
294 | link_args: config_host['GLUSTERFS_LIBS'].split()) | |
295 | endif | |
296 | libssh = not_found | |
297 | if 'CONFIG_LIBSSH' in config_host | |
298 | libssh = declare_dependency(compile_args: config_host['LIBSSH_CFLAGS'].split(), | |
299 | link_args: config_host['LIBSSH_LIBS'].split()) | |
300 | endif | |
301 | libbzip2 = not_found | |
302 | if 'CONFIG_BZIP2' in config_host | |
303 | libbzip2 = declare_dependency(link_args: config_host['BZIP2_LIBS'].split()) | |
304 | endif | |
305 | liblzfse = not_found | |
306 | if 'CONFIG_LZFSE' in config_host | |
307 | liblzfse = declare_dependency(link_args: config_host['LZFSE_LIBS'].split()) | |
308 | endif | |
478e943f PB |
309 | oss = not_found |
310 | if 'CONFIG_AUDIO_OSS' in config_host | |
311 | oss = declare_dependency(link_args: config_host['OSS_LIBS'].split()) | |
312 | endif | |
313 | dsound = not_found | |
314 | if 'CONFIG_AUDIO_DSOUND' in config_host | |
315 | dsound = declare_dependency(link_args: config_host['DSOUND_LIBS'].split()) | |
316 | endif | |
317 | coreaudio = not_found | |
318 | if 'CONFIG_AUDIO_COREAUDIO' in config_host | |
319 | coreaudio = declare_dependency(link_args: config_host['COREAUDIO_LIBS'].split()) | |
2b1ccdf4 MAL |
320 | endif |
321 | opengl = not_found | |
322 | if 'CONFIG_OPENGL' in config_host | |
de2d3005 PB |
323 | opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(), |
324 | link_args: config_host['OPENGL_LIBS'].split()) | |
2b1ccdf4 MAL |
325 | endif |
326 | gtk = not_found | |
327 | if 'CONFIG_GTK' in config_host | |
328 | gtk = declare_dependency(compile_args: config_host['GTK_CFLAGS'].split(), | |
329 | link_args: config_host['GTK_LIBS'].split()) | |
330 | endif | |
331 | vte = not_found | |
332 | if 'CONFIG_VTE' in config_host | |
333 | vte = declare_dependency(compile_args: config_host['VTE_CFLAGS'].split(), | |
334 | link_args: config_host['VTE_LIBS'].split()) | |
335 | endif | |
336 | x11 = not_found | |
337 | if 'CONFIG_X11' in config_host | |
338 | x11 = declare_dependency(compile_args: config_host['X11_CFLAGS'].split(), | |
339 | link_args: config_host['X11_LIBS'].split()) | |
340 | endif | |
341 | curses = not_found | |
342 | if 'CONFIG_CURSES' in config_host | |
343 | curses = declare_dependency(compile_args: config_host['CURSES_CFLAGS'].split(), | |
344 | link_args: config_host['CURSES_LIBS'].split()) | |
345 | endif | |
346 | iconv = not_found | |
347 | if 'CONFIG_ICONV' in config_host | |
348 | iconv = declare_dependency(compile_args: config_host['ICONV_CFLAGS'].split(), | |
349 | link_args: config_host['ICONV_LIBS'].split()) | |
350 | endif | |
a0b93237 | 351 | vnc = not_found |
2b1ccdf4 | 352 | png = not_found |
2b1ccdf4 | 353 | jpeg = not_found |
2b1ccdf4 | 354 | sasl = not_found |
a0b93237 PB |
355 | if get_option('vnc').enabled() |
356 | vnc = declare_dependency() # dummy dependency | |
357 | png = dependency('libpng', required: get_option('vnc_png'), | |
1a94933f | 358 | method: 'pkg-config', static: enable_static) |
a0b93237 PB |
359 | jpeg = cc.find_library('jpeg', has_headers: ['jpeglib.h'], |
360 | required: get_option('vnc_jpeg'), | |
361 | static: enable_static) | |
362 | sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'], | |
363 | required: get_option('vnc_sasl'), | |
364 | static: enable_static) | |
365 | if sasl.found() | |
366 | sasl = declare_dependency(dependencies: sasl, | |
367 | compile_args: '-DSTRUCT_IOVEC_DEFINED') | |
368 | endif | |
478e943f | 369 | endif |
4a96337d PB |
370 | fdt = not_found |
371 | if 'CONFIG_FDT' in config_host | |
372 | fdt = declare_dependency(compile_args: config_host['FDT_CFLAGS'].split(), | |
373 | link_args: config_host['FDT_LIBS'].split()) | |
374 | endif | |
708eab42 MAL |
375 | snappy = not_found |
376 | if 'CONFIG_SNAPPY' in config_host | |
377 | snappy = declare_dependency(link_args: config_host['SNAPPY_LIBS'].split()) | |
378 | endif | |
379 | lzo = not_found | |
380 | if 'CONFIG_LZO' in config_host | |
381 | lzo = declare_dependency(link_args: config_host['LZO_LIBS'].split()) | |
382 | endif | |
55166230 MAL |
383 | rdma = not_found |
384 | if 'CONFIG_RDMA' in config_host | |
385 | rdma = declare_dependency(link_args: config_host['RDMA_LIBS'].split()) | |
386 | endif | |
ab318051 MAL |
387 | numa = not_found |
388 | if 'CONFIG_NUMA' in config_host | |
389 | numa = declare_dependency(link_args: config_host['NUMA_LIBS'].split()) | |
390 | endif | |
582ea95f MAL |
391 | xen = not_found |
392 | if 'CONFIG_XEN_BACKEND' in config_host | |
393 | xen = declare_dependency(compile_args: config_host['XEN_CFLAGS'].split(), | |
394 | link_args: config_host['XEN_LIBS'].split()) | |
395 | endif | |
06677ce1 PB |
396 | cacard = not_found |
397 | if 'CONFIG_SMARTCARD' in config_host | |
398 | cacard = declare_dependency(compile_args: config_host['SMARTCARD_CFLAGS'].split(), | |
399 | link_args: config_host['SMARTCARD_LIBS'].split()) | |
400 | endif | |
0a40bcb7 CB |
401 | u2f = not_found |
402 | if have_system | |
403 | u2f = dependency('u2f-emu', required: get_option('u2f'), | |
404 | method: 'pkg-config', | |
405 | static: enable_static) | |
406 | endif | |
06677ce1 PB |
407 | usbredir = not_found |
408 | if 'CONFIG_USB_REDIR' in config_host | |
409 | usbredir = declare_dependency(compile_args: config_host['USB_REDIR_CFLAGS'].split(), | |
410 | link_args: config_host['USB_REDIR_LIBS'].split()) | |
411 | endif | |
412 | libusb = not_found | |
413 | if 'CONFIG_USB_LIBUSB' in config_host | |
414 | libusb = declare_dependency(compile_args: config_host['LIBUSB_CFLAGS'].split(), | |
415 | link_args: config_host['LIBUSB_LIBS'].split()) | |
416 | endif | |
c9322ab5 MAL |
417 | capstone = not_found |
418 | if 'CONFIG_CAPSTONE' in config_host | |
419 | capstone = declare_dependency(compile_args: config_host['CAPSTONE_CFLAGS'].split(), | |
420 | link_args: config_host['CAPSTONE_LIBS'].split()) | |
421 | endif | |
422 | libpmem = not_found | |
423 | if 'CONFIG_LIBPMEM' in config_host | |
424 | libpmem = declare_dependency(compile_args: config_host['LIBPMEM_CFLAGS'].split(), | |
425 | link_args: config_host['LIBPMEM_LIBS'].split()) | |
426 | endif | |
c7c91a74 BR |
427 | libdaxctl = not_found |
428 | if 'CONFIG_LIBDAXCTL' in config_host | |
429 | libdaxctl = declare_dependency(link_args: config_host['LIBDAXCTL_LIBS'].split()) | |
430 | endif | |
8ce0a45f MAL |
431 | tasn1 = not_found |
432 | if 'CONFIG_TASN1' in config_host | |
433 | tasn1 = declare_dependency(compile_args: config_host['TASN1_CFLAGS'].split(), | |
434 | link_args: config_host['TASN1_LIBS'].split()) | |
435 | endif | |
af04e89d MAL |
436 | keyutils = dependency('libkeyutils', required: false, |
437 | method: 'pkg-config', static: enable_static) | |
a81df1b6 | 438 | |
3909def8 MAL |
439 | has_gettid = cc.has_function('gettid') |
440 | ||
859aef02 PB |
441 | # Create config-host.h |
442 | ||
35be72ba PB |
443 | config_host_data.set('CONFIG_SDL', sdl.found()) |
444 | config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found()) | |
a0b93237 PB |
445 | config_host_data.set('CONFIG_VNC', vnc.found()) |
446 | config_host_data.set('CONFIG_VNC_JPEG', jpeg.found()) | |
447 | config_host_data.set('CONFIG_VNC_PNG', png.found()) | |
448 | config_host_data.set('CONFIG_VNC_SASL', sasl.found()) | |
4113f4cf | 449 | config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found()) |
af04e89d | 450 | config_host_data.set('CONFIG_KEYUTILS', keyutils.found()) |
3909def8 | 451 | config_host_data.set('CONFIG_GETTID', has_gettid) |
859aef02 PB |
452 | config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version())) |
453 | config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0]) | |
454 | config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1]) | |
455 | config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2]) | |
456 | ||
457 | arrays = ['CONFIG_AUDIO_DRIVERS', 'CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST'] | |
458 | strings = ['HOST_DSOSUF', 'CONFIG_IASL', 'qemu_confdir', 'qemu_datadir', | |
459 | 'qemu_moddir', 'qemu_localstatedir', 'qemu_helperdir', 'qemu_localedir', | |
460 | 'qemu_icondir', 'qemu_desktopdir', 'qemu_firmwarepath'] | |
461 | foreach k, v: config_host | |
462 | if arrays.contains(k) | |
463 | if v != '' | |
464 | v = '"' + '", "'.join(v.split()) + '", ' | |
465 | endif | |
466 | config_host_data.set(k, v) | |
467 | elif k == 'ARCH' | |
468 | config_host_data.set('HOST_' + v.to_upper(), 1) | |
469 | elif strings.contains(k) | |
470 | if not k.startswith('CONFIG_') | |
471 | k = 'CONFIG_' + k.to_upper() | |
472 | endif | |
473 | config_host_data.set_quoted(k, v) | |
474 | elif k.startswith('CONFIG_') or k.startswith('HAVE_') or k.startswith('HOST_') | |
475 | config_host_data.set(k, v == 'y' ? 1 : v) | |
476 | endif | |
477 | endforeach | |
478 | genh += configure_file(output: 'config-host.h', configuration: config_host_data) | |
479 | ||
2becc36a | 480 | minikconf = find_program('scripts/minikconf.py') |
a98006bc | 481 | config_all_devices = {} |
ca0fc784 | 482 | config_all_disas = {} |
2becc36a PB |
483 | config_devices_mak_list = [] |
484 | config_devices_h = {} | |
859aef02 | 485 | config_target_h = {} |
2becc36a | 486 | config_target_mak = {} |
ca0fc784 PB |
487 | |
488 | disassemblers = { | |
489 | 'alpha' : ['CONFIG_ALPHA_DIS'], | |
490 | 'arm' : ['CONFIG_ARM_DIS'], | |
491 | 'avr' : ['CONFIG_AVR_DIS'], | |
492 | 'cris' : ['CONFIG_CRIS_DIS'], | |
493 | 'hppa' : ['CONFIG_HPPA_DIS'], | |
494 | 'i386' : ['CONFIG_I386_DIS'], | |
495 | 'x86_64' : ['CONFIG_I386_DIS'], | |
496 | 'x32' : ['CONFIG_I386_DIS'], | |
497 | 'lm32' : ['CONFIG_LM32_DIS'], | |
498 | 'm68k' : ['CONFIG_M68K_DIS'], | |
499 | 'microblaze' : ['CONFIG_MICROBLAZE_DIS'], | |
500 | 'mips' : ['CONFIG_MIPS_DIS'], | |
501 | 'moxie' : ['CONFIG_MOXIE_DIS'], | |
502 | 'nios2' : ['CONFIG_NIOS2_DIS'], | |
503 | 'or1k' : ['CONFIG_OPENRISC_DIS'], | |
504 | 'ppc' : ['CONFIG_PPC_DIS'], | |
505 | 'riscv' : ['CONFIG_RISCV_DIS'], | |
506 | 'rx' : ['CONFIG_RX_DIS'], | |
507 | 's390' : ['CONFIG_S390_DIS'], | |
508 | 'sh4' : ['CONFIG_SH4_DIS'], | |
509 | 'sparc' : ['CONFIG_SPARC_DIS'], | |
510 | 'xtensa' : ['CONFIG_XTENSA_DIS'], | |
511 | } | |
512 | if link_language == 'cpp' | |
513 | disassemblers += { | |
514 | 'aarch64' : [ 'CONFIG_ARM_A64_DIS'], | |
515 | 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'], | |
516 | 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'], | |
517 | } | |
518 | endif | |
519 | ||
2becc36a PB |
520 | kconfig_external_symbols = [ |
521 | 'CONFIG_KVM', | |
522 | 'CONFIG_XEN', | |
523 | 'CONFIG_TPM', | |
524 | 'CONFIG_SPICE', | |
525 | 'CONFIG_IVSHMEM', | |
526 | 'CONFIG_OPENGL', | |
527 | 'CONFIG_X11', | |
528 | 'CONFIG_VHOST_USER', | |
40bc0ca9 | 529 | 'CONFIG_VHOST_VDPA', |
2becc36a PB |
530 | 'CONFIG_VHOST_KERNEL', |
531 | 'CONFIG_VIRTFS', | |
532 | 'CONFIG_LINUX', | |
533 | 'CONFIG_PVRDMA', | |
534 | ] | |
859aef02 | 535 | ignored = ['TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_DIRS'] |
ca0fc784 | 536 | |
a81df1b6 | 537 | foreach target : target_dirs |
859aef02 PB |
538 | config_target = keyval.load(meson.current_build_dir() / target / 'config-target.mak') |
539 | ||
ca0fc784 PB |
540 | foreach k, v: disassemblers |
541 | if config_host['ARCH'].startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k) | |
542 | foreach sym: v | |
543 | config_target += { sym: 'y' } | |
544 | config_all_disas += { sym: 'y' } | |
545 | endforeach | |
546 | endif | |
547 | endforeach | |
548 | ||
859aef02 PB |
549 | config_target_data = configuration_data() |
550 | foreach k, v: config_target | |
551 | if not k.startswith('TARGET_') and not k.startswith('CONFIG_') | |
552 | # do nothing | |
553 | elif ignored.contains(k) | |
554 | # do nothing | |
555 | elif k == 'TARGET_BASE_ARCH' | |
556 | config_target_data.set('TARGET_' + v.to_upper(), 1) | |
557 | elif k == 'TARGET_NAME' | |
558 | config_target_data.set_quoted(k, v) | |
559 | elif v == 'y' | |
560 | config_target_data.set(k, 1) | |
561 | else | |
562 | config_target_data.set(k, v) | |
563 | endif | |
564 | endforeach | |
565 | config_target_h += {target: configure_file(output: target + '-config-target.h', | |
566 | configuration: config_target_data)} | |
2becc36a PB |
567 | |
568 | if target.endswith('-softmmu') | |
2becc36a PB |
569 | base_kconfig = [] |
570 | foreach sym : kconfig_external_symbols | |
859aef02 | 571 | if sym in config_target or sym in config_host |
2becc36a PB |
572 | base_kconfig += '@0@=y'.format(sym) |
573 | endif | |
574 | endforeach | |
575 | ||
576 | config_devices_mak = target + '-config-devices.mak' | |
577 | config_devices_mak = configure_file( | |
578 | input: ['default-configs' / target + '.mak', 'Kconfig'], | |
579 | output: config_devices_mak, | |
580 | depfile: config_devices_mak + '.d', | |
581 | capture: true, | |
582 | command: [minikconf, config_host['CONFIG_MINIKCONF_MODE'], | |
583 | config_devices_mak, '@DEPFILE@', '@INPUT@', | |
584 | base_kconfig]) | |
859aef02 PB |
585 | |
586 | config_devices_data = configuration_data() | |
587 | config_devices = keyval.load(config_devices_mak) | |
588 | foreach k, v: config_devices | |
589 | config_devices_data.set(k, 1) | |
590 | endforeach | |
2becc36a | 591 | config_devices_mak_list += config_devices_mak |
859aef02 PB |
592 | config_devices_h += {target: configure_file(output: target + '-config-devices.h', |
593 | configuration: config_devices_data)} | |
594 | config_target += config_devices | |
a98006bc | 595 | config_all_devices += config_devices |
2becc36a PB |
596 | endif |
597 | config_target_mak += {target: config_target} | |
a81df1b6 | 598 | endforeach |
a81df1b6 | 599 | |
2becc36a PB |
600 | # This configuration is used to build files that are shared by |
601 | # multiple binaries, and then extracted out of the "common" | |
602 | # static_library target. | |
603 | # | |
604 | # We do not use all_sources()/all_dependencies(), because it would | |
605 | # build literally all source files, including devices only used by | |
606 | # targets that are not built for this compilation. The CONFIG_ALL | |
607 | # pseudo symbol replaces it. | |
608 | ||
2becc36a PB |
609 | config_all = config_all_devices |
610 | config_all += config_host | |
611 | config_all += config_all_disas | |
612 | config_all += { | |
613 | 'CONFIG_XEN': config_host.has_key('CONFIG_XEN_BACKEND'), | |
614 | 'CONFIG_SOFTMMU': have_system, | |
615 | 'CONFIG_USER_ONLY': have_user, | |
616 | 'CONFIG_ALL': true, | |
617 | } | |
618 | ||
a81df1b6 PB |
619 | # Generators |
620 | ||
3f885659 | 621 | hxtool = find_program('scripts/hxtool') |
650b5d54 | 622 | shaderinclude = find_program('scripts/shaderinclude.pl') |
a81df1b6 PB |
623 | qapi_gen = find_program('scripts/qapi-gen.py') |
624 | qapi_gen_depends = [ meson.source_root() / 'scripts/qapi/__init__.py', | |
625 | meson.source_root() / 'scripts/qapi/commands.py', | |
626 | meson.source_root() / 'scripts/qapi/common.py', | |
a81df1b6 PB |
627 | meson.source_root() / 'scripts/qapi/error.py', |
628 | meson.source_root() / 'scripts/qapi/events.py', | |
629 | meson.source_root() / 'scripts/qapi/expr.py', | |
630 | meson.source_root() / 'scripts/qapi/gen.py', | |
631 | meson.source_root() / 'scripts/qapi/introspect.py', | |
632 | meson.source_root() / 'scripts/qapi/parser.py', | |
633 | meson.source_root() / 'scripts/qapi/schema.py', | |
634 | meson.source_root() / 'scripts/qapi/source.py', | |
635 | meson.source_root() / 'scripts/qapi/types.py', | |
636 | meson.source_root() / 'scripts/qapi/visit.py', | |
637 | meson.source_root() / 'scripts/qapi/common.py', | |
a81df1b6 PB |
638 | meson.source_root() / 'scripts/qapi-gen.py' |
639 | ] | |
640 | ||
641 | tracetool = [ | |
642 | python, files('scripts/tracetool.py'), | |
643 | '--backend=' + config_host['TRACE_BACKENDS'] | |
644 | ] | |
645 | ||
2c273f32 MAL |
646 | qemu_version_cmd = [find_program('scripts/qemu-version.sh'), |
647 | meson.current_source_dir(), | |
859aef02 | 648 | config_host['PKGVERSION'], meson.project_version()] |
2c273f32 MAL |
649 | qemu_version = custom_target('qemu-version.h', |
650 | output: 'qemu-version.h', | |
651 | command: qemu_version_cmd, | |
652 | capture: true, | |
653 | build_by_default: true, | |
654 | build_always_stale: true) | |
655 | genh += qemu_version | |
656 | ||
3f885659 MAL |
657 | hxdep = [] |
658 | hx_headers = [ | |
659 | ['qemu-options.hx', 'qemu-options.def'], | |
660 | ['qemu-img-cmds.hx', 'qemu-img-cmds.h'], | |
661 | ] | |
662 | if have_system | |
663 | hx_headers += [ | |
664 | ['hmp-commands.hx', 'hmp-commands.h'], | |
665 | ['hmp-commands-info.hx', 'hmp-commands-info.h'], | |
666 | ] | |
667 | endif | |
668 | foreach d : hx_headers | |
b7c70bf2 | 669 | hxdep += custom_target(d[1], |
3f885659 MAL |
670 | input: files(d[0]), |
671 | output: d[1], | |
672 | capture: true, | |
673 | build_by_default: true, # to be removed when added to a target | |
674 | command: [hxtool, '-h', '@INPUT0@']) | |
675 | endforeach | |
676 | genh += hxdep | |
677 | ||
eb937365 PM |
678 | SPHINX_ARGS = [config_host['SPHINX_BUILD'], |
679 | '-Dversion=' + meson.project_version(), | |
680 | '-Drelease=' + config_host['PKGVERSION']] | |
681 | ||
682 | if get_option('werror') | |
683 | SPHINX_ARGS += [ '-W' ] | |
684 | endif | |
685 | ||
b3f4830a PM |
686 | sphinx_extn_depends = [ meson.source_root() / 'docs/sphinx/depfile.py', |
687 | meson.source_root() / 'docs/sphinx/hxtool.py', | |
688 | meson.source_root() / 'docs/sphinx/kerneldoc.py', | |
689 | meson.source_root() / 'docs/sphinx/kernellog.py', | |
690 | meson.source_root() / 'docs/sphinx/qapidoc.py', | |
691 | meson.source_root() / 'docs/sphinx/qmp_lexer.py', | |
692 | qapi_gen_depends ] | |
693 | ||
a81df1b6 PB |
694 | # Collect sourcesets. |
695 | ||
696 | util_ss = ss.source_set() | |
697 | stub_ss = ss.source_set() | |
698 | trace_ss = ss.source_set() | |
3154fee4 | 699 | block_ss = ss.source_set() |
4a96337d | 700 | blockdev_ss = ss.source_set() |
ff219dca | 701 | qmp_ss = ss.source_set() |
2becc36a PB |
702 | common_ss = ss.source_set() |
703 | softmmu_ss = ss.source_set() | |
704 | user_ss = ss.source_set() | |
705 | bsd_user_ss = ss.source_set() | |
706 | linux_user_ss = ss.source_set() | |
707 | specific_ss = ss.source_set() | |
64ed6f92 | 708 | specific_fuzz_ss = ss.source_set() |
2becc36a | 709 | |
3154fee4 | 710 | modules = {} |
2becc36a PB |
711 | hw_arch = {} |
712 | target_arch = {} | |
713 | target_softmmu_arch = {} | |
a81df1b6 PB |
714 | |
715 | ############### | |
716 | # Trace files # | |
717 | ############### | |
718 | ||
c9322ab5 MAL |
719 | # TODO: add each directory to the subdirs from its own meson.build, once |
720 | # we have those | |
a81df1b6 PB |
721 | trace_events_subdirs = [ |
722 | 'accel/kvm', | |
723 | 'accel/tcg', | |
724 | 'crypto', | |
725 | 'monitor', | |
726 | ] | |
727 | if have_user | |
728 | trace_events_subdirs += [ 'linux-user' ] | |
729 | endif | |
730 | if have_block | |
731 | trace_events_subdirs += [ | |
732 | 'authz', | |
733 | 'block', | |
734 | 'io', | |
735 | 'nbd', | |
736 | 'scsi', | |
737 | ] | |
738 | endif | |
739 | if have_system | |
740 | trace_events_subdirs += [ | |
741 | 'audio', | |
742 | 'backends', | |
743 | 'backends/tpm', | |
744 | 'chardev', | |
745 | 'hw/9pfs', | |
746 | 'hw/acpi', | |
747 | 'hw/alpha', | |
748 | 'hw/arm', | |
749 | 'hw/audio', | |
750 | 'hw/block', | |
751 | 'hw/block/dataplane', | |
752 | 'hw/char', | |
753 | 'hw/display', | |
754 | 'hw/dma', | |
755 | 'hw/hppa', | |
756 | 'hw/hyperv', | |
757 | 'hw/i2c', | |
758 | 'hw/i386', | |
759 | 'hw/i386/xen', | |
760 | 'hw/ide', | |
761 | 'hw/input', | |
762 | 'hw/intc', | |
763 | 'hw/isa', | |
764 | 'hw/mem', | |
765 | 'hw/mips', | |
766 | 'hw/misc', | |
767 | 'hw/misc/macio', | |
768 | 'hw/net', | |
769 | 'hw/nvram', | |
770 | 'hw/pci', | |
771 | 'hw/pci-host', | |
772 | 'hw/ppc', | |
773 | 'hw/rdma', | |
774 | 'hw/rdma/vmw', | |
775 | 'hw/rtc', | |
776 | 'hw/s390x', | |
777 | 'hw/scsi', | |
778 | 'hw/sd', | |
779 | 'hw/sparc', | |
780 | 'hw/sparc64', | |
781 | 'hw/ssi', | |
782 | 'hw/timer', | |
783 | 'hw/tpm', | |
784 | 'hw/usb', | |
785 | 'hw/vfio', | |
786 | 'hw/virtio', | |
787 | 'hw/watchdog', | |
788 | 'hw/xen', | |
789 | 'hw/gpio', | |
a81df1b6 PB |
790 | 'migration', |
791 | 'net', | |
8b7a5507 | 792 | 'softmmu', |
a81df1b6 PB |
793 | 'ui', |
794 | ] | |
795 | endif | |
796 | trace_events_subdirs += [ | |
797 | 'hw/core', | |
798 | 'qapi', | |
799 | 'qom', | |
800 | 'target/arm', | |
801 | 'target/hppa', | |
802 | 'target/i386', | |
803 | 'target/mips', | |
804 | 'target/ppc', | |
805 | 'target/riscv', | |
806 | 'target/s390x', | |
807 | 'target/sparc', | |
808 | 'util', | |
809 | ] | |
810 | ||
a81df1b6 PB |
811 | subdir('qapi') |
812 | subdir('qobject') | |
813 | subdir('stubs') | |
814 | subdir('trace') | |
815 | subdir('util') | |
5582c58f MAL |
816 | subdir('qom') |
817 | subdir('authz') | |
a81df1b6 | 818 | subdir('crypto') |
2d78b56e | 819 | subdir('ui') |
a81df1b6 | 820 | |
3154fee4 MAL |
821 | |
822 | if enable_modules | |
823 | libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO') | |
824 | modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO') | |
825 | endif | |
826 | ||
a81df1b6 PB |
827 | # Build targets from sourcesets |
828 | ||
2becc36a | 829 | stub_ss = stub_ss.apply(config_all, strict: false) |
a81df1b6 PB |
830 | |
831 | util_ss.add_all(trace_ss) | |
2becc36a | 832 | util_ss = util_ss.apply(config_all, strict: false) |
a81df1b6 PB |
833 | libqemuutil = static_library('qemuutil', |
834 | sources: util_ss.sources() + stub_ss.sources() + genh, | |
835 | dependencies: [util_ss.dependencies(), m, glib, socket]) | |
836 | qemuutil = declare_dependency(link_with: libqemuutil, | |
04c6f1e7 | 837 | sources: genh + version_res) |
a81df1b6 | 838 | |
abff1abf PB |
839 | decodetree = generator(find_program('scripts/decodetree.py'), |
840 | output: 'decode-@[email protected]', | |
841 | arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@']) | |
842 | ||
478e943f | 843 | subdir('audio') |
7fcfd456 | 844 | subdir('io') |
848e8ff6 | 845 | subdir('chardev') |
ec0d5893 | 846 | subdir('fsdev') |
abff1abf | 847 | subdir('libdecnumber') |
d3b18480 | 848 | subdir('target') |
708eab42 | 849 | subdir('dump') |
ec0d5893 | 850 | |
5e5733e5 MAL |
851 | block_ss.add(files( |
852 | 'block.c', | |
853 | 'blockjob.c', | |
854 | 'job.c', | |
855 | 'qemu-io-cmds.c', | |
856 | )) | |
857 | block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c')) | |
858 | ||
859 | subdir('nbd') | |
860 | subdir('scsi') | |
861 | subdir('block') | |
862 | ||
4a96337d PB |
863 | blockdev_ss.add(files( |
864 | 'blockdev.c', | |
865 | 'blockdev-nbd.c', | |
866 | 'iothread.c', | |
867 | 'job-qmp.c', | |
868 | )) | |
869 | ||
870 | # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon, | |
871 | # os-win32.c does not | |
872 | blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c')) | |
873 | softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')]) | |
874 | ||
875 | softmmu_ss.add_all(blockdev_ss) | |
876 | softmmu_ss.add(files( | |
877 | 'bootdevice.c', | |
878 | 'dma-helpers.c', | |
879 | 'qdev-monitor.c', | |
880 | ), sdl) | |
881 | ||
882 | softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c')) | |
883 | softmmu_ss.add(when: 'CONFIG_SECCOMP', if_true: [files('qemu-seccomp.c'), seccomp]) | |
884 | softmmu_ss.add(when: ['CONFIG_FDT', fdt], if_true: [files('device_tree.c')]) | |
885 | ||
886 | common_ss.add(files('cpus-common.c')) | |
887 | ||
5d3ea0e1 | 888 | subdir('softmmu') |
c9322ab5 | 889 | |
c7c91a74 | 890 | specific_ss.add(files('disas.c', 'exec.c', 'gdbstub.c'), capstone, libpmem, libdaxctl) |
c9322ab5 MAL |
891 | specific_ss.add(files('exec-vary.c')) |
892 | specific_ss.add(when: 'CONFIG_TCG', if_true: files( | |
893 | 'fpu/softfloat.c', | |
894 | 'tcg/optimize.c', | |
895 | 'tcg/tcg-common.c', | |
896 | 'tcg/tcg-op-gvec.c', | |
897 | 'tcg/tcg-op-vec.c', | |
898 | 'tcg/tcg-op.c', | |
899 | 'tcg/tcg.c', | |
900 | )) | |
901 | specific_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('disas/tci.c', 'tcg/tci.c')) | |
902 | ||
ab318051 | 903 | subdir('backends') |
c574e161 | 904 | subdir('disas') |
55166230 | 905 | subdir('migration') |
ff219dca | 906 | subdir('monitor') |
cdaf0722 | 907 | subdir('net') |
17ef2af6 | 908 | subdir('replay') |
582ea95f | 909 | subdir('hw') |
1a82878a | 910 | subdir('accel') |
f556b4a1 | 911 | subdir('plugins') |
b309c321 | 912 | subdir('bsd-user') |
3a30446a MAL |
913 | subdir('linux-user') |
914 | ||
b309c321 MAL |
915 | bsd_user_ss.add(files('gdbstub.c')) |
916 | specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss) | |
917 | ||
3a30446a MAL |
918 | linux_user_ss.add(files('gdbstub.c', 'thunk.c')) |
919 | specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss) | |
5d3ea0e1 | 920 | |
a2ce7dbd PB |
921 | # needed for fuzzing binaries |
922 | subdir('tests/qtest/libqos') | |
64ed6f92 | 923 | subdir('tests/qtest/fuzz') |
a2ce7dbd | 924 | |
3154fee4 MAL |
925 | block_mods = [] |
926 | softmmu_mods = [] | |
927 | foreach d, list : modules | |
928 | foreach m, module_ss : list | |
929 | if enable_modules and targetos != 'windows' | |
3e292c51 | 930 | module_ss = module_ss.apply(config_all, strict: false) |
3154fee4 MAL |
931 | sl = static_library(d + '-' + m, [genh, module_ss.sources()], |
932 | dependencies: [modulecommon, module_ss.dependencies()], pic: true) | |
933 | if d == 'block' | |
934 | block_mods += sl | |
935 | else | |
936 | softmmu_mods += sl | |
937 | endif | |
938 | else | |
939 | if d == 'block' | |
940 | block_ss.add_all(module_ss) | |
941 | else | |
942 | softmmu_ss.add_all(module_ss) | |
943 | endif | |
944 | endif | |
945 | endforeach | |
946 | endforeach | |
947 | ||
948 | nm = find_program('nm') | |
604f3e4e | 949 | undefsym = find_program('scripts/undefsym.py') |
3154fee4 MAL |
950 | block_syms = custom_target('block.syms', output: 'block.syms', |
951 | input: [libqemuutil, block_mods], | |
952 | capture: true, | |
953 | command: [undefsym, nm, '@INPUT@']) | |
954 | qemu_syms = custom_target('qemu.syms', output: 'qemu.syms', | |
955 | input: [libqemuutil, softmmu_mods], | |
956 | capture: true, | |
957 | command: [undefsym, nm, '@INPUT@']) | |
958 | ||
5e5733e5 MAL |
959 | block_ss = block_ss.apply(config_host, strict: false) |
960 | libblock = static_library('block', block_ss.sources() + genh, | |
961 | dependencies: block_ss.dependencies(), | |
962 | link_depends: block_syms, | |
963 | name_suffix: 'fa', | |
964 | build_by_default: false) | |
965 | ||
966 | block = declare_dependency(link_whole: [libblock], | |
b7c70bf2 MAL |
967 | link_args: '@block.syms', |
968 | dependencies: [crypto, io]) | |
5e5733e5 | 969 | |
ff219dca PB |
970 | qmp_ss = qmp_ss.apply(config_host, strict: false) |
971 | libqmp = static_library('qmp', qmp_ss.sources() + genh, | |
972 | dependencies: qmp_ss.dependencies(), | |
973 | name_suffix: 'fa', | |
974 | build_by_default: false) | |
975 | ||
976 | qmp = declare_dependency(link_whole: [libqmp]) | |
977 | ||
3154fee4 MAL |
978 | foreach m : block_mods + softmmu_mods |
979 | shared_module(m.name(), | |
980 | name_prefix: '', | |
981 | link_whole: m, | |
982 | install: true, | |
983 | install_dir: config_host['qemu_moddir']) | |
984 | endforeach | |
985 | ||
64ed6f92 PB |
986 | softmmu_ss.add(authz, block, chardev, crypto, io, qmp) |
987 | common_ss.add(qom, qemuutil) | |
988 | ||
989 | common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss]) | |
2becc36a PB |
990 | common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss) |
991 | ||
992 | common_all = common_ss.apply(config_all, strict: false) | |
993 | common_all = static_library('common', | |
994 | build_by_default: false, | |
995 | sources: common_all.sources() + genh, | |
996 | dependencies: common_all.dependencies(), | |
997 | name_suffix: 'fa') | |
998 | ||
c9322ab5 MAL |
999 | feature_to_c = find_program('scripts/feature_to_c.sh') |
1000 | ||
64ed6f92 | 1001 | emulators = [] |
2becc36a PB |
1002 | foreach target : target_dirs |
1003 | config_target = config_target_mak[target] | |
1004 | target_name = config_target['TARGET_NAME'] | |
1005 | arch = config_target['TARGET_BASE_ARCH'] | |
859aef02 | 1006 | arch_srcs = [config_target_h[target]] |
64ed6f92 PB |
1007 | arch_deps = [] |
1008 | c_args = ['-DNEED_CPU_H', | |
1009 | '-DCONFIG_TARGET="@[email protected]"'.format(target), | |
1010 | '-DCONFIG_DEVICES="@[email protected]"'.format(target)] | |
1011 | link_args = [] | |
2becc36a | 1012 | |
859aef02 | 1013 | config_target += config_host |
2becc36a PB |
1014 | target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])] |
1015 | if targetos == 'linux' | |
1016 | target_inc += include_directories('linux-headers', is_system: true) | |
1017 | endif | |
1018 | if target.endswith('-softmmu') | |
1019 | qemu_target_name = 'qemu-system-' + target_name | |
1020 | target_type='system' | |
abff1abf PB |
1021 | t = target_softmmu_arch[arch].apply(config_target, strict: false) |
1022 | arch_srcs += t.sources() | |
64ed6f92 | 1023 | arch_deps += t.dependencies() |
abff1abf | 1024 | |
2c44220d MAL |
1025 | hw_dir = target_name == 'sparc64' ? 'sparc64' : arch |
1026 | hw = hw_arch[hw_dir].apply(config_target, strict: false) | |
1027 | arch_srcs += hw.sources() | |
64ed6f92 | 1028 | arch_deps += hw.dependencies() |
2c44220d | 1029 | |
2becc36a | 1030 | arch_srcs += config_devices_h[target] |
64ed6f92 | 1031 | link_args += ['@block.syms', '@qemu.syms'] |
2becc36a | 1032 | else |
3a30446a | 1033 | abi = config_target['TARGET_ABI_DIR'] |
2becc36a PB |
1034 | target_type='user' |
1035 | qemu_target_name = 'qemu-' + target_name | |
1036 | if 'CONFIG_LINUX_USER' in config_target | |
1037 | base_dir = 'linux-user' | |
1038 | target_inc += include_directories('linux-user/host/' / config_host['ARCH']) | |
1039 | else | |
1040 | base_dir = 'bsd-user' | |
1041 | endif | |
1042 | target_inc += include_directories( | |
1043 | base_dir, | |
3a30446a | 1044 | base_dir / abi, |
2becc36a | 1045 | ) |
3a30446a MAL |
1046 | if 'CONFIG_LINUX_USER' in config_target |
1047 | dir = base_dir / abi | |
1048 | arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c') | |
1049 | if config_target.has_key('TARGET_SYSTBL_ABI') | |
1050 | arch_srcs += \ | |
1051 | syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'], | |
1052 | extra_args : config_target['TARGET_SYSTBL_ABI']) | |
1053 | endif | |
1054 | endif | |
2becc36a PB |
1055 | endif |
1056 | ||
c9322ab5 MAL |
1057 | if 'TARGET_XML_FILES' in config_target |
1058 | gdbstub_xml = custom_target(target + '-gdbstub-xml.c', | |
1059 | output: target + '-gdbstub-xml.c', | |
1060 | input: files(config_target['TARGET_XML_FILES'].split()), | |
1061 | command: [feature_to_c, '@INPUT@'], | |
1062 | capture: true) | |
1063 | arch_srcs += gdbstub_xml | |
1064 | endif | |
1065 | ||
abff1abf PB |
1066 | t = target_arch[arch].apply(config_target, strict: false) |
1067 | arch_srcs += t.sources() | |
64ed6f92 | 1068 | arch_deps += t.dependencies() |
abff1abf | 1069 | |
2becc36a PB |
1070 | target_common = common_ss.apply(config_target, strict: false) |
1071 | objects = common_all.extract_objects(target_common.sources()) | |
64ed6f92 | 1072 | deps = target_common.dependencies() |
2becc36a | 1073 | |
2becc36a PB |
1074 | target_specific = specific_ss.apply(config_target, strict: false) |
1075 | arch_srcs += target_specific.sources() | |
64ed6f92 | 1076 | arch_deps += target_specific.dependencies() |
2becc36a | 1077 | |
64ed6f92 | 1078 | lib = static_library('qemu-' + target, |
859aef02 | 1079 | sources: arch_srcs + genh, |
b7612f45 | 1080 | dependencies: arch_deps, |
2becc36a PB |
1081 | objects: objects, |
1082 | include_directories: target_inc, | |
64ed6f92 PB |
1083 | c_args: c_args, |
1084 | build_by_default: false, | |
2becc36a | 1085 | name_suffix: 'fa') |
64ed6f92 PB |
1086 | |
1087 | if target.endswith('-softmmu') | |
1088 | execs = [{ | |
1089 | 'name': 'qemu-system-' + target_name, | |
1090 | 'gui': false, | |
1091 | 'sources': files('softmmu/main.c'), | |
1092 | 'dependencies': [] | |
1093 | }] | |
35be72ba | 1094 | if targetos == 'windows' and (sdl.found() or gtk.found()) |
64ed6f92 PB |
1095 | execs += [{ |
1096 | 'name': 'qemu-system-' + target_name + 'w', | |
1097 | 'gui': true, | |
1098 | 'sources': files('softmmu/main.c'), | |
1099 | 'dependencies': [] | |
1100 | }] | |
1101 | endif | |
1102 | if config_host.has_key('CONFIG_FUZZ') | |
1103 | specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false) | |
1104 | execs += [{ | |
1105 | 'name': 'qemu-fuzz-' + target_name, | |
1106 | 'gui': false, | |
1107 | 'sources': specific_fuzz.sources(), | |
1108 | 'dependencies': specific_fuzz.dependencies(), | |
64ed6f92 PB |
1109 | }] |
1110 | endif | |
1111 | else | |
1112 | execs = [{ | |
1113 | 'name': 'qemu-' + target_name, | |
1114 | 'gui': false, | |
1115 | 'sources': [], | |
1116 | 'dependencies': [] | |
1117 | }] | |
1118 | endif | |
1119 | foreach exe: execs | |
1120 | emulators += executable(exe['name'], exe['sources'], | |
1121 | install: true, | |
1122 | c_args: c_args, | |
1123 | dependencies: arch_deps + deps + exe['dependencies'], | |
1124 | objects: lib.extract_all_objects(recursive: true), | |
1125 | link_language: link_language, | |
1126 | link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []), | |
1127 | link_args: link_args, | |
1128 | gui_app: exe['gui']) | |
10e1d263 MAL |
1129 | |
1130 | if 'CONFIG_TRACE_SYSTEMTAP' in config_host | |
1131 | foreach stp: [ | |
bd5f973a SH |
1132 | {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false}, |
1133 | {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / exe['name'], 'install': true}, | |
10e1d263 MAL |
1134 | {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true}, |
1135 | {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true}, | |
1136 | ] | |
bd5f973a | 1137 | custom_target(exe['name'] + stp['ext'], |
10e1d263 | 1138 | input: trace_events_all, |
bd5f973a | 1139 | output: exe['name'] + stp['ext'], |
10e1d263 MAL |
1140 | capture: true, |
1141 | install: stp['install'], | |
ab4c0996 | 1142 | install_dir: qemu_datadir / '../systemtap/tapset', |
10e1d263 MAL |
1143 | command: [ |
1144 | tracetool, '--group=all', '--format=' + stp['fmt'], | |
1145 | '--binary=' + stp['bin'], | |
1146 | '--target-name=' + target_name, | |
1147 | '--target-type=' + target_type, | |
1148 | '--probe-prefix=qemu.' + target_type + '.' + target_name, | |
1149 | '@INPUT@', | |
1150 | ]) | |
1151 | endforeach | |
1152 | endif | |
64ed6f92 | 1153 | endforeach |
2becc36a PB |
1154 | endforeach |
1155 | ||
931049b4 | 1156 | # Other build targets |
897b5afa | 1157 | |
f556b4a1 PB |
1158 | if 'CONFIG_PLUGIN' in config_host |
1159 | install_headers('include/qemu/qemu-plugin.h') | |
1160 | endif | |
1161 | ||
f15bff25 PB |
1162 | if 'CONFIG_GUEST_AGENT' in config_host |
1163 | subdir('qga') | |
1164 | endif | |
1165 | ||
9755c94a LV |
1166 | # Don't build qemu-keymap if xkbcommon is not explicitly enabled |
1167 | # when we don't build tools or system | |
4113f4cf | 1168 | if xkbcommon.found() |
28742467 MAL |
1169 | # used for the update-keymaps target, so include rules even if !have_tools |
1170 | qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh, | |
1171 | dependencies: [qemuutil, xkbcommon], install: have_tools) | |
1172 | endif | |
1173 | ||
8855e8f0 | 1174 | qemu_block_tools = [] |
931049b4 | 1175 | if have_tools |
b7c70bf2 MAL |
1176 | qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep], |
1177 | dependencies: [authz, block, crypto, io, qom, qemuutil], install: true) | |
1178 | qemu_io = executable('qemu-io', files('qemu-io.c'), | |
1179 | dependencies: [block, qemuutil], install: true) | |
eb705985 | 1180 | qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'), |
b7c70bf2 | 1181 | dependencies: [block, qemuutil], install: true) |
b7c70bf2 | 1182 | |
7c58bb76 | 1183 | subdir('storage-daemon') |
a9c9727c | 1184 | subdir('contrib/rdmacm-mux') |
1d7bb6ab | 1185 | subdir('contrib/elf2dmp') |
a9c9727c | 1186 | |
157e7b13 MAL |
1187 | executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'), |
1188 | dependencies: qemuutil, | |
1189 | install: true) | |
1190 | ||
931049b4 PB |
1191 | if 'CONFIG_VHOST_USER' in config_host |
1192 | subdir('contrib/libvhost-user') | |
2d7ac0af | 1193 | subdir('contrib/vhost-user-blk') |
b7612f45 | 1194 | subdir('contrib/vhost-user-gpu') |
32fcc624 | 1195 | subdir('contrib/vhost-user-input') |
99650b62 | 1196 | subdir('contrib/vhost-user-scsi') |
931049b4 | 1197 | endif |
8f51e01c MAL |
1198 | |
1199 | if targetos == 'linux' | |
1200 | executable('qemu-bridge-helper', files('qemu-bridge-helper.c'), | |
1201 | dependencies: [qemuutil, libcap_ng], | |
1202 | install: true, | |
1203 | install_dir: get_option('libexecdir')) | |
897b5afa MAL |
1204 | |
1205 | executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'), | |
1206 | dependencies: [authz, crypto, io, qom, qemuutil, | |
1207 | libcap_ng, libudev, libmpathpersist], | |
1208 | install: true) | |
8f51e01c MAL |
1209 | endif |
1210 | ||
5ee24e78 MAL |
1211 | if 'CONFIG_IVSHMEM' in config_host |
1212 | subdir('contrib/ivshmem-client') | |
1213 | subdir('contrib/ivshmem-server') | |
1214 | endif | |
931049b4 PB |
1215 | endif |
1216 | ||
f5aa6320 | 1217 | subdir('scripts') |
3f99cf57 | 1218 | subdir('tools') |
bdcbea7a | 1219 | subdir('pc-bios') |
ce1c1e7a | 1220 | subdir('tests') |
f8aa24ea | 1221 | subdir('docs') |
e8f3bd71 MAL |
1222 | if 'CONFIG_GTK' in config_host |
1223 | subdir('po') | |
1224 | endif | |
3f99cf57 | 1225 | |
8adfeba9 MAL |
1226 | if host_machine.system() == 'windows' |
1227 | nsis_cmd = [ | |
1228 | find_program('scripts/nsis.py'), | |
1229 | '@OUTPUT@', | |
1230 | get_option('prefix'), | |
1231 | meson.current_source_dir(), | |
1232 | host_machine.cpu_family(), | |
1233 | '--', | |
1234 | '-DDISPLAYVERSION=' + meson.project_version(), | |
1235 | ] | |
1236 | if build_docs | |
1237 | nsis_cmd += '-DCONFIG_DOCUMENTATION=y' | |
1238 | endif | |
1239 | if 'CONFIG_GTK' in config_host | |
1240 | nsis_cmd += '-DCONFIG_GTK=y' | |
1241 | endif | |
1242 | ||
1243 | nsis = custom_target('nsis', | |
1244 | output: 'qemu-setup-' + meson.project_version() + '.exe', | |
1245 | input: files('qemu.nsi'), | |
1246 | build_always_stale: true, | |
1247 | command: nsis_cmd + ['@INPUT@']) | |
1248 | alias_target('installer', nsis) | |
1249 | endif | |
1250 | ||
f9332757 PB |
1251 | summary_info = {} |
1252 | summary_info += {'Install prefix': config_host['prefix']} | |
1253 | summary_info += {'BIOS directory': config_host['qemu_datadir']} | |
1254 | summary_info += {'firmware path': config_host['qemu_firmwarepath']} | |
1255 | summary_info += {'binary directory': config_host['bindir']} | |
1256 | summary_info += {'library directory': config_host['libdir']} | |
1257 | summary_info += {'module directory': config_host['qemu_moddir']} | |
1258 | summary_info += {'libexec directory': config_host['libexecdir']} | |
1259 | summary_info += {'include directory': config_host['includedir']} | |
1260 | summary_info += {'config directory': config_host['sysconfdir']} | |
1261 | if targetos != 'windows' | |
1262 | summary_info += {'local state directory': config_host['qemu_localstatedir']} | |
b81efab7 | 1263 | summary_info += {'Manual directory': get_option('mandir')} |
f9332757 PB |
1264 | else |
1265 | summary_info += {'local state directory': 'queried at runtime'} | |
1266 | endif | |
491e74c1 | 1267 | summary_info += {'Doc directory': get_option('docdir')} |
f9332757 PB |
1268 | summary_info += {'Build directory': meson.current_build_dir()} |
1269 | summary_info += {'Source path': meson.current_source_dir()} | |
1270 | summary_info += {'GIT binary': config_host['GIT']} | |
1271 | summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']} | |
1272 | summary_info += {'C compiler': meson.get_compiler('c').cmd_array()[0]} | |
1273 | summary_info += {'Host C compiler': meson.get_compiler('c', native: true).cmd_array()[0]} | |
1274 | if link_language == 'cpp' | |
1275 | summary_info += {'C++ compiler': meson.get_compiler('cpp').cmd_array()[0]} | |
1276 | else | |
1277 | summary_info += {'C++ compiler': false} | |
1278 | endif | |
1279 | if targetos == 'darwin' | |
1280 | summary_info += {'Objective-C compiler': meson.get_compiler('objc').cmd_array()[0]} | |
1281 | endif | |
1282 | summary_info += {'ARFLAGS': config_host['ARFLAGS']} | |
1283 | summary_info += {'CFLAGS': config_host['CFLAGS']} | |
1284 | summary_info += {'QEMU_CFLAGS': config_host['QEMU_CFLAGS']} | |
1285 | summary_info += {'QEMU_LDFLAGS': config_host['QEMU_LDFLAGS']} | |
1286 | summary_info += {'make': config_host['MAKE']} | |
f9332757 PB |
1287 | summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())} |
1288 | summary_info += {'sphinx-build': config_host['SPHINX_BUILD']} | |
1289 | summary_info += {'genisoimage': config_host['GENISOIMAGE']} | |
1290 | # TODO: add back version | |
1291 | summary_info += {'slirp support': config_host.has_key('CONFIG_SLIRP')} | |
1292 | if config_host.has_key('CONFIG_SLIRP') | |
1293 | summary_info += {'smbd': config_host['CONFIG_SMBD_COMMAND']} | |
1294 | endif | |
1295 | summary_info += {'module support': config_host.has_key('CONFIG_MODULES')} | |
1296 | if config_host.has_key('CONFIG_MODULES') | |
1297 | summary_info += {'alternative module path': config_host.has_key('CONFIG_MODULE_UPGRADES')} | |
1298 | endif | |
1299 | summary_info += {'host CPU': cpu} | |
1300 | summary_info += {'host endianness': build_machine.endian()} | |
1301 | summary_info += {'target list': config_host['TARGET_DIRS']} | |
1302 | summary_info += {'gprof enabled': config_host.has_key('CONFIG_GPROF')} | |
1303 | summary_info += {'sparse enabled': meson.get_compiler('c').cmd_array().contains('cgcc')} | |
1304 | summary_info += {'strip binaries': get_option('strip')} | |
1305 | summary_info += {'profiler': config_host.has_key('CONFIG_PROFILER')} | |
3e8529dd | 1306 | summary_info += {'static build': config_host.has_key('CONFIG_STATIC')} |
f9332757 PB |
1307 | if targetos == 'darwin' |
1308 | summary_info += {'Cocoa support': config_host.has_key('CONFIG_COCOA')} | |
1309 | endif | |
1310 | # TODO: add back version | |
35be72ba PB |
1311 | summary_info += {'SDL support': sdl.found()} |
1312 | summary_info += {'SDL image support': sdl_image.found()} | |
f9332757 PB |
1313 | # TODO: add back version |
1314 | summary_info += {'GTK support': config_host.has_key('CONFIG_GTK')} | |
1315 | summary_info += {'GTK GL support': config_host.has_key('CONFIG_GTK_GL')} | |
b7612f45 | 1316 | summary_info += {'pixman': pixman.found()} |
f9332757 PB |
1317 | # TODO: add back version |
1318 | summary_info += {'VTE support': config_host.has_key('CONFIG_VTE')} | |
1319 | summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']} | |
1320 | summary_info += {'GNUTLS support': config_host.has_key('CONFIG_GNUTLS')} | |
1321 | # TODO: add back version | |
1322 | summary_info += {'libgcrypt': config_host.has_key('CONFIG_GCRYPT')} | |
1323 | if config_host.has_key('CONFIG_GCRYPT') | |
1324 | summary_info += {' hmac': config_host.has_key('CONFIG_GCRYPT_HMAC')} | |
1325 | summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')} | |
1326 | endif | |
1327 | # TODO: add back version | |
1328 | summary_info += {'nettle': config_host.has_key('CONFIG_NETTLE')} | |
1329 | if config_host.has_key('CONFIG_NETTLE') | |
1330 | summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')} | |
1331 | endif | |
1332 | summary_info += {'libtasn1': config_host.has_key('CONFIG_TASN1')} | |
1333 | summary_info += {'PAM': config_host.has_key('CONFIG_AUTH_PAM')} | |
1334 | summary_info += {'iconv support': config_host.has_key('CONFIG_ICONV')} | |
1335 | summary_info += {'curses support': config_host.has_key('CONFIG_CURSES')} | |
1336 | # TODO: add back version | |
1337 | summary_info += {'virgl support': config_host.has_key('CONFIG_VIRGL')} | |
1338 | summary_info += {'curl support': config_host.has_key('CONFIG_CURL')} | |
1339 | summary_info += {'mingw32 support': targetos == 'windows'} | |
1340 | summary_info += {'Audio drivers': config_host['CONFIG_AUDIO_DRIVERS']} | |
1341 | summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']} | |
1342 | summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']} | |
1343 | summary_info += {'VirtFS support': config_host.has_key('CONFIG_VIRTFS')} | |
1344 | summary_info += {'Multipath support': config_host.has_key('CONFIG_MPATH')} | |
a0b93237 PB |
1345 | summary_info += {'VNC support': vnc.found()} |
1346 | if vnc.found() | |
1347 | summary_info += {'VNC SASL support': sasl.found()} | |
1348 | summary_info += {'VNC JPEG support': jpeg.found()} | |
1349 | summary_info += {'VNC PNG support': png.found()} | |
f9332757 PB |
1350 | endif |
1351 | summary_info += {'xen support': config_host.has_key('CONFIG_XEN_BACKEND')} | |
1352 | if config_host.has_key('CONFIG_XEN_BACKEND') | |
1353 | summary_info += {'xen ctrl version': config_host['CONFIG_XEN_CTRL_INTERFACE_VERSION']} | |
1354 | endif | |
1355 | summary_info += {'brlapi support': config_host.has_key('CONFIG_BRLAPI')} | |
1356 | summary_info += {'Documentation': config_host.has_key('BUILD_DOCS')} | |
1357 | summary_info += {'PIE': get_option('b_pie')} | |
1358 | summary_info += {'vde support': config_host.has_key('CONFIG_VDE')} | |
1359 | summary_info += {'netmap support': config_host.has_key('CONFIG_NETMAP')} | |
1360 | summary_info += {'Linux AIO support': config_host.has_key('CONFIG_LINUX_AIO')} | |
1361 | summary_info += {'Linux io_uring support': config_host.has_key('CONFIG_LINUX_IO_URING')} | |
1362 | summary_info += {'ATTR/XATTR support': config_host.has_key('CONFIG_ATTR')} | |
1363 | summary_info += {'Install blobs': config_host.has_key('INSTALL_BLOBS')} | |
1364 | # TODO: add back KVM/HAX/HVF/WHPX/TCG | |
1365 | #summary_info += {'KVM support': have_kvm'} | |
1366 | #summary_info += {'HAX support': have_hax'} | |
1367 | #summary_info += {'HVF support': have_hvf'} | |
1368 | #summary_info += {'WHPX support': have_whpx'} | |
1369 | #summary_info += {'TCG support': have_tcg'} | |
1370 | #if get_option('tcg') | |
1371 | # summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')} | |
1372 | # summary_info += {'TCG interpreter': config_host.has_key('CONFIG_TCG_INTERPRETER')} | |
1373 | #endif | |
1374 | summary_info += {'malloc trim support': config_host.has_key('CONFIG_MALLOC_TRIM')} | |
1375 | summary_info += {'RDMA support': config_host.has_key('CONFIG_RDMA')} | |
1376 | summary_info += {'PVRDMA support': config_host.has_key('CONFIG_PVRDMA')} | |
1377 | summary_info += {'fdt support': config_host.has_key('CONFIG_FDT')} | |
1378 | summary_info += {'membarrier': config_host.has_key('CONFIG_MEMBARRIER')} | |
1379 | summary_info += {'preadv support': config_host.has_key('CONFIG_PREADV')} | |
1380 | summary_info += {'fdatasync': config_host.has_key('CONFIG_FDATASYNC')} | |
1381 | summary_info += {'madvise': config_host.has_key('CONFIG_MADVISE')} | |
1382 | summary_info += {'posix_madvise': config_host.has_key('CONFIG_POSIX_MADVISE')} | |
1383 | summary_info += {'posix_memalign': config_host.has_key('CONFIG_POSIX_MEMALIGN')} | |
1384 | summary_info += {'libcap-ng support': config_host.has_key('CONFIG_LIBCAP_NG')} | |
1385 | summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')} | |
1386 | summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')} | |
1387 | summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')} | |
1388 | summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')} | |
1389 | summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_KERNEL')} | |
1390 | summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')} | |
1391 | summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')} | |
1392 | summary_info += {'Trace backends': config_host['TRACE_BACKENDS']} | |
1393 | if config_host['TRACE_BACKENDS'].split().contains('simple') | |
1394 | summary_info += {'Trace output file': config_host['CONFIG_TRACE_FILE'] + '-<pid>'} | |
1395 | endif | |
1396 | # TODO: add back protocol and server version | |
1397 | summary_info += {'spice support': config_host.has_key('CONFIG_SPICE')} | |
1398 | summary_info += {'rbd support': config_host.has_key('CONFIG_RBD')} | |
1399 | summary_info += {'xfsctl support': config_host.has_key('CONFIG_XFS')} | |
1400 | summary_info += {'smartcard support': config_host.has_key('CONFIG_SMARTCARD')} | |
0a40bcb7 | 1401 | summary_info += {'U2F support': u2f.found()} |
f9332757 PB |
1402 | summary_info += {'libusb': config_host.has_key('CONFIG_USB_LIBUSB')} |
1403 | summary_info += {'usb net redir': config_host.has_key('CONFIG_USB_REDIR')} | |
1404 | summary_info += {'OpenGL support': config_host.has_key('CONFIG_OPENGL')} | |
1405 | summary_info += {'OpenGL dmabufs': config_host.has_key('CONFIG_OPENGL_DMABUF')} | |
1406 | summary_info += {'libiscsi support': config_host.has_key('CONFIG_LIBISCSI')} | |
1407 | summary_info += {'libnfs support': config_host.has_key('CONFIG_LIBNFS')} | |
1408 | summary_info += {'build guest agent': config_host.has_key('CONFIG_GUEST_AGENT')} | |
1409 | if targetos == 'windows' | |
1410 | if 'WIN_SDK' in config_host | |
1411 | summary_info += {'Windows SDK': config_host['WIN_SDK']} | |
1412 | endif | |
1413 | summary_info += {'QGA VSS support': config_host.has_key('CONFIG_QGA_VSS')} | |
1414 | summary_info += {'QGA w32 disk info': config_host.has_key('CONFIG_QGA_NTDDSCSI')} | |
4bad7c3b | 1415 | summary_info += {'QGA MSI support': config_host.has_key('CONFIG_QGA_MSI')} |
f9332757 PB |
1416 | endif |
1417 | summary_info += {'seccomp support': config_host.has_key('CONFIG_SECCOMP')} | |
1418 | summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']} | |
1419 | summary_info += {'coroutine pool': config_host['CONFIG_COROUTINE_POOL'] == '1'} | |
1420 | summary_info += {'debug stack usage': config_host.has_key('CONFIG_DEBUG_STACK_USAGE')} | |
1421 | summary_info += {'mutex debugging': config_host.has_key('CONFIG_DEBUG_MUTEX')} | |
1422 | summary_info += {'crypto afalg': config_host.has_key('CONFIG_AF_ALG')} | |
1423 | summary_info += {'GlusterFS support': config_host.has_key('CONFIG_GLUSTERFS')} | |
bf0e56a3 | 1424 | summary_info += {'gcov': get_option('b_coverage')} |
f9332757 PB |
1425 | summary_info += {'TPM support': config_host.has_key('CONFIG_TPM')} |
1426 | summary_info += {'libssh support': config_host.has_key('CONFIG_LIBSSH')} | |
1427 | summary_info += {'QOM debugging': config_host.has_key('CONFIG_QOM_CAST_DEBUG')} | |
1428 | summary_info += {'Live block migration': config_host.has_key('CONFIG_LIVE_BLOCK_MIGRATION')} | |
1429 | summary_info += {'lzo support': config_host.has_key('CONFIG_LZO')} | |
1430 | summary_info += {'snappy support': config_host.has_key('CONFIG_SNAPPY')} | |
1431 | summary_info += {'bzip2 support': config_host.has_key('CONFIG_BZIP2')} | |
1432 | summary_info += {'lzfse support': config_host.has_key('CONFIG_LZFSE')} | |
1433 | summary_info += {'zstd support': config_host.has_key('CONFIG_ZSTD')} | |
1434 | summary_info += {'NUMA host support': config_host.has_key('CONFIG_NUMA')} | |
1435 | summary_info += {'libxml2': config_host.has_key('CONFIG_LIBXML2')} | |
1436 | summary_info += {'tcmalloc support': config_host.has_key('CONFIG_TCMALLOC')} | |
1437 | summary_info += {'jemalloc support': config_host.has_key('CONFIG_JEMALLOC')} | |
1438 | summary_info += {'avx2 optimization': config_host.has_key('CONFIG_AVX2_OPT')} | |
1439 | summary_info += {'avx512f optimization': config_host.has_key('CONFIG_AVX512F_OPT')} | |
1440 | summary_info += {'replication support': config_host.has_key('CONFIG_REPLICATION')} | |
1441 | summary_info += {'bochs support': config_host.has_key('CONFIG_BOCHS')} | |
1442 | summary_info += {'cloop support': config_host.has_key('CONFIG_CLOOP')} | |
1443 | summary_info += {'dmg support': config_host.has_key('CONFIG_DMG')} | |
1444 | summary_info += {'qcow v1 support': config_host.has_key('CONFIG_QCOW1')} | |
1445 | summary_info += {'vdi support': config_host.has_key('CONFIG_VDI')} | |
1446 | summary_info += {'vvfat support': config_host.has_key('CONFIG_VVFAT')} | |
1447 | summary_info += {'qed support': config_host.has_key('CONFIG_QED')} | |
1448 | summary_info += {'parallels support': config_host.has_key('CONFIG_PARALLELS')} | |
1449 | summary_info += {'sheepdog support': config_host.has_key('CONFIG_SHEEPDOG')} | |
1450 | summary_info += {'capstone': config_host.has_key('CONFIG_CAPSTONE')} | |
1451 | summary_info += {'libpmem support': config_host.has_key('CONFIG_LIBPMEM')} | |
1452 | summary_info += {'libdaxctl support': config_host.has_key('CONFIG_LIBDAXCTL')} | |
1453 | summary_info += {'libudev': config_host.has_key('CONFIG_LIBUDEV')} | |
1454 | summary_info += {'default devices': config_host['CONFIG_MINIKCONF_MODE'] == '--defconfig'} | |
1455 | summary_info += {'plugin support': config_host.has_key('CONFIG_PLUGIN')} | |
1456 | summary_info += {'fuzzing support': config_host.has_key('CONFIG_FUZZ')} | |
1457 | if config_host.has_key('HAVE_GDB_BIN') | |
1458 | summary_info += {'gdb': config_host['HAVE_GDB_BIN']} | |
1459 | endif | |
1460 | summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')} | |
1461 | summary_info += {'rng-none': config_host.has_key('CONFIG_RNG_NONE')} | |
1462 | summary_info += {'Linux keyring': config_host.has_key('CONFIG_SECRET_KEYRING')} | |
1463 | summary(summary_info, bool_yn: true) | |
1464 | ||
1465 | if not supported_cpus.contains(cpu) | |
1466 | message() | |
1467 | warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!') | |
1468 | message() | |
1469 | message('CPU host architecture ' + cpu + ' support is not currently maintained.') | |
1470 | message('The QEMU project intends to remove support for this host CPU in') | |
1471 | message('a future release if nobody volunteers to maintain it and to') | |
1472 | message('provide a build host for our continuous integration setup.') | |
1473 | message('configure has succeeded and you can continue to build, but') | |
1474 | message('if you care about QEMU on this platform you should contact') | |
1475 | message('us upstream at [email protected].') | |
1476 | endif | |
1477 | ||
1478 | if not supported_oses.contains(targetos) | |
1479 | message() | |
1480 | warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!') | |
1481 | message() | |
1482 | message('Host OS ' + targetos + 'support is not currently maintained.') | |
1483 | message('The QEMU project intends to remove support for this host OS in') | |
1484 | message('a future release if nobody volunteers to maintain it and to') | |
1485 | message('provide a build host for our continuous integration setup.') | |
1486 | message('configure has succeeded and you can continue to build, but') | |
1487 | message('if you care about QEMU on this platform you should contact') | |
1488 | message('us upstream at [email protected].') | |
1489 | endif |