Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1 | project('qemu', ['c'], meson_version: '>=0.55.0', |
Paolo Bonzini | a5cb7c5 | 2020-10-19 06:56:16 -0400 | [diff] [blame] | 2 | 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 Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 4 | version: run_command('head', meson.source_root() / 'VERSION').stdout().strip()) |
| 5 | |
| 6 | not_found = dependency('', required: false) |
Paolo Bonzini | b29b40f | 2020-08-10 18:04:43 +0200 | [diff] [blame] | 7 | if meson.version().version_compare('>=0.56.0') |
| 8 | keyval = import('keyval') |
| 9 | else |
| 10 | keyval = import('unstable-keyval') |
| 11 | endif |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 12 | ss = import('sourceset') |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 13 | fs = import('fs') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 14 | |
Paolo Bonzini | ce1c1e7 | 2020-01-28 16:41:44 +0100 | [diff] [blame] | 15 | sh = find_program('sh') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 16 | cc = meson.get_compiler('c') |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 17 | config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 18 | enable_modules = 'CONFIG_MODULES' in config_host |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 19 | enable_static = 'CONFIG_STATIC' in config_host |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 20 | |
| 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.) |
| 26 | tmpdir = meson.current_build_dir() / 'meson-private/temp' |
Marc-André Lureau | 8fe1123 | 2020-09-11 14:42:48 +0200 | [diff] [blame] | 27 | |
| 28 | if get_option('qemu_suffix').startswith('/') |
| 29 | error('qemu_suffix cannot start with a /') |
| 30 | endif |
| 31 | |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 32 | qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix') |
Marc-André Lureau | ab4c099 | 2020-08-26 15:04:16 +0400 | [diff] [blame] | 33 | qemu_datadir = get_option('datadir') / get_option('qemu_suffix') |
Marc-André Lureau | 491e74c | 2020-08-26 15:04:17 +0400 | [diff] [blame] | 34 | qemu_docdir = get_option('docdir') / get_option('qemu_suffix') |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 35 | qemu_moddir = get_option('libdir') / get_option('qemu_suffix') |
| 36 | |
| 37 | qemu_desktopdir = get_option('datadir') / 'applications' |
| 38 | qemu_icondir = get_option('datadir') / 'icons' |
| 39 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 40 | config_host_data = configuration_data() |
| 41 | genh = [] |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 42 | |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 43 | target_dirs = config_host['TARGET_DIRS'].split() |
| 44 | have_user = false |
| 45 | have_system = false |
| 46 | foreach target : target_dirs |
| 47 | have_user = have_user or target.endswith('-user') |
| 48 | have_system = have_system or target.endswith('-softmmu') |
| 49 | endforeach |
| 50 | have_tools = 'CONFIG_TOOLS' in config_host |
| 51 | have_block = have_system or have_tools |
| 52 | |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 53 | python = import('python').find_installation() |
| 54 | |
| 55 | supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux'] |
Sergei Trofimovich | 6125673 | 2020-10-12 18:57:19 +0100 | [diff] [blame] | 56 | supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64', |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 57 | 'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64'] |
| 58 | |
| 59 | cpu = host_machine.cpu_family() |
| 60 | targetos = host_machine.system() |
| 61 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 62 | if cpu in ['x86', 'x86_64'] |
| 63 | kvm_targets = ['i386-softmmu', 'x86_64-softmmu'] |
| 64 | elif cpu == 'aarch64' |
| 65 | kvm_targets = ['aarch64-softmmu'] |
| 66 | elif cpu == 's390x' |
| 67 | kvm_targets = ['s390x-softmmu'] |
| 68 | elif cpu in ['ppc', 'ppc64'] |
| 69 | kvm_targets = ['ppc-softmmu', 'ppc64-softmmu'] |
Huacai Chen | fbc5884 | 2020-10-07 16:39:28 +0800 | [diff] [blame] | 70 | elif cpu in ['mips', 'mips64'] |
| 71 | kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu'] |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 72 | else |
| 73 | kvm_targets = [] |
| 74 | endif |
| 75 | |
| 76 | accelerator_targets = { 'CONFIG_KVM': kvm_targets } |
Alex Bennée | 0c3e41d | 2020-11-10 19:23:09 +0000 | [diff] [blame] | 77 | if 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 | } |
| 82 | endif |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 83 | if cpu in ['x86', 'x86_64'] |
| 84 | accelerator_targets += { |
| 85 | 'CONFIG_HAX': ['i386-softmmu', 'x86_64-softmmu'], |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 86 | 'CONFIG_HVF': ['x86_64-softmmu'], |
| 87 | 'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'], |
| 88 | } |
| 89 | endif |
| 90 | |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 91 | ################## |
| 92 | # Compiler flags # |
| 93 | ################## |
| 94 | |
Alexander Bulekov | ff9ed62 | 2020-09-09 18:05:16 -0400 | [diff] [blame] | 95 | # Specify linker-script with add_project_link_arguments so that it is not placed |
| 96 | # within a linker --start-group/--end-group pair |
| 97 | if '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']) |
| 101 | endif |
| 102 | |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 103 | add_project_arguments(config_host['QEMU_CFLAGS'].split(), |
| 104 | native: false, language: ['c', 'objc']) |
| 105 | add_project_arguments(config_host['QEMU_CXXFLAGS'].split(), |
| 106 | native: false, language: 'cpp') |
| 107 | add_project_link_arguments(config_host['QEMU_LDFLAGS'].split(), |
| 108 | native: false, language: ['c', 'cpp', 'objc']) |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 109 | |
Paolo Bonzini | 1e6e616 | 2020-10-14 08:45:42 -0400 | [diff] [blame] | 110 | if targetos == 'linux' |
| 111 | add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers', |
| 112 | '-isystem', 'linux-headers', |
| 113 | language: ['c', 'cpp']) |
| 114 | endif |
| 115 | |
| 116 | if 'CONFIG_TCG_INTERPRETER' in config_host |
| 117 | tcg_arch = 'tci' |
| 118 | elif config_host['ARCH'] == 'sparc64' |
| 119 | tcg_arch = 'sparc' |
| 120 | elif config_host['ARCH'] == 's390x' |
| 121 | tcg_arch = 's390' |
| 122 | elif config_host['ARCH'] in ['x86_64', 'x32'] |
| 123 | tcg_arch = 'i386' |
| 124 | elif config_host['ARCH'] == 'ppc64' |
| 125 | tcg_arch = 'ppc' |
| 126 | elif config_host['ARCH'] in ['riscv32', 'riscv64'] |
| 127 | tcg_arch = 'riscv' |
| 128 | else |
| 129 | tcg_arch = config_host['ARCH'] |
| 130 | endif |
| 131 | add_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 Bulekov | c46f76d | 2020-09-02 13:36:50 -0400 | [diff] [blame] | 138 | |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 139 | link_language = meson.get_external_property('link_language', 'cpp') |
| 140 | if link_language == 'cpp' |
| 141 | add_languages('cpp', required: true, native: false) |
| 142 | endif |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 143 | if host_machine.system() == 'darwin' |
| 144 | add_languages('objc', required: false, native: false) |
| 145 | endif |
| 146 | |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 147 | sparse = find_program('cgcc', required: get_option('sparse')) |
| 148 | if sparse.found() |
Paolo Bonzini | 968b4db | 2020-02-03 14:45:33 +0100 | [diff] [blame] | 149 | run_target('sparse', |
| 150 | command: [find_program('scripts/check_sparse.py'), |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 151 | 'compile_commands.json', sparse.full_path(), '-Wbitwise', |
| 152 | '-Wno-transparent-union', '-Wno-old-initializer', |
| 153 | '-Wno-non-pointer-null']) |
Paolo Bonzini | 968b4db | 2020-02-03 14:45:33 +0100 | [diff] [blame] | 154 | endif |
| 155 | |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 156 | ########################################### |
| 157 | # Target-specific checks and dependencies # |
| 158 | ########################################### |
| 159 | |
| 160 | if targetos != 'linux' and get_option('mpath').enabled() |
| 161 | error('Multipath is supported only on Linux') |
| 162 | endif |
| 163 | |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 164 | m = cc.find_library('m', required: false) |
| 165 | util = cc.find_library('util', required: false) |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 166 | winmm = [] |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 167 | socket = [] |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 168 | version_res = [] |
Marc-André Lureau | d92989a | 2019-08-20 19:48:59 +0400 | [diff] [blame] | 169 | coref = [] |
| 170 | iokit = [] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 171 | emulator_link_args = [] |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 172 | cocoa = not_found |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 173 | hvf = not_found |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 174 | if targetos == 'windows' |
| 175 | socket = cc.find_library('ws2_32') |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 176 | winmm = cc.find_library('winmm') |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 177 | |
| 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é Lureau | d92989a | 2019-08-20 19:48:59 +0400 | [diff] [blame] | 182 | elif targetos == 'darwin' |
| 183 | coref = dependency('appleframeworks', modules: 'CoreFoundation') |
| 184 | iokit = dependency('appleframeworks', modules: 'IOKit') |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 185 | cocoa = dependency('appleframeworks', modules: 'Cocoa', required: get_option('cocoa')) |
Paolo Bonzini | cfad62f | 2020-08-09 23:47:45 +0200 | [diff] [blame] | 186 | elif targetos == 'sunos' |
| 187 | socket = [cc.find_library('socket'), |
| 188 | cc.find_library('nsl'), |
| 189 | cc.find_library('resolv')] |
| 190 | elif targetos == 'haiku' |
| 191 | socket = [cc.find_library('posix_error_mapper'), |
| 192 | cc.find_library('network'), |
| 193 | cc.find_library('bsd')] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 194 | elif 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 Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 199 | endif |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 200 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 201 | accelerators = [] |
| 202 | if not get_option('kvm').disabled() and targetos == 'linux' |
| 203 | accelerators += 'CONFIG_KVM' |
| 204 | endif |
| 205 | if 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' |
| 208 | else |
| 209 | have_xen_pci_passthrough = false |
| 210 | endif |
| 211 | if not get_option('whpx').disabled() and targetos == 'windows' |
Sunil Muthuswamy | 57e2a1f | 2020-10-22 00:27:55 +0000 | [diff] [blame] | 212 | if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64' |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 213 | 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 |
| 218 | endif |
| 219 | if 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 |
| 225 | endif |
| 226 | if not get_option('hax').disabled() |
| 227 | if get_option('hax').enabled() or targetos in ['windows', 'darwin', 'netbsd'] |
| 228 | accelerators += 'CONFIG_HAX' |
| 229 | endif |
| 230 | endif |
| 231 | if 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' } |
| 241 | endif |
| 242 | |
| 243 | if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled() |
| 244 | error('KVM not available on this platform') |
| 245 | endif |
| 246 | if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled() |
| 247 | error('HVF not available on this platform') |
| 248 | endif |
| 249 | if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled() |
| 250 | error('WHPX not available on this platform') |
| 251 | endif |
| 252 | if 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 |
| 258 | endif |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 259 | if not cocoa.found() and get_option('cocoa').enabled() |
| 260 | error('Cocoa not available on this platform') |
| 261 | endif |
| 262 | |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 263 | ################ |
| 264 | # Dependencies # |
| 265 | ################ |
| 266 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 267 | # The path to glib.h is added to all compilation commands. This was |
| 268 | # grandfathered in from the QEMU Makefiles. |
| 269 | add_project_arguments(config_host['GLIB_CFLAGS'].split(), |
| 270 | native: false, language: ['c', 'cpp', 'objc']) |
| 271 | glib = declare_dependency(link_args: config_host['GLIB_LIBS'].split()) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 272 | gio = not_found |
| 273 | if 'CONFIG_GIO' in config_host |
| 274 | gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(), |
| 275 | link_args: config_host['GIO_LIBS'].split()) |
| 276 | endif |
| 277 | lttng = not_found |
| 278 | if 'CONFIG_TRACE_UST' in config_host |
| 279 | lttng = declare_dependency(link_args: config_host['LTTNG_UST_LIBS'].split()) |
| 280 | endif |
| 281 | urcubp = not_found |
| 282 | if 'CONFIG_TRACE_UST' in config_host |
| 283 | urcubp = declare_dependency(link_args: config_host['URCU_BP_LIBS'].split()) |
| 284 | endif |
Daniel P. Berrangé | 46859d9 | 2020-09-01 14:30:49 +0100 | [diff] [blame] | 285 | gcrypt = not_found |
| 286 | if 'CONFIG_GCRYPT' in config_host |
| 287 | gcrypt = declare_dependency(compile_args: config_host['GCRYPT_CFLAGS'].split(), |
| 288 | link_args: config_host['GCRYPT_LIBS'].split()) |
| 289 | endif |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 290 | nettle = not_found |
| 291 | if 'CONFIG_NETTLE' in config_host |
| 292 | nettle = declare_dependency(compile_args: config_host['NETTLE_CFLAGS'].split(), |
| 293 | link_args: config_host['NETTLE_LIBS'].split()) |
| 294 | endif |
| 295 | gnutls = not_found |
| 296 | if 'CONFIG_GNUTLS' in config_host |
| 297 | gnutls = declare_dependency(compile_args: config_host['GNUTLS_CFLAGS'].split(), |
| 298 | link_args: config_host['GNUTLS_LIBS'].split()) |
| 299 | endif |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 300 | pixman = not_found |
| 301 | if have_system or have_tools |
| 302 | pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8', |
Paolo Bonzini | 1a94933 | 2020-08-31 06:27:00 -0400 | [diff] [blame] | 303 | method: 'pkg-config', static: enable_static) |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 304 | endif |
Marc-André Lureau | 5e7fbd2 | 2019-07-15 22:54:34 +0400 | [diff] [blame] | 305 | pam = not_found |
| 306 | if 'CONFIG_AUTH_PAM' in config_host |
| 307 | pam = cc.find_library('pam') |
| 308 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 309 | libaio = cc.find_library('aio', required: false) |
Paolo Bonzini | 1ffb3bb | 2020-08-28 19:33:54 +0200 | [diff] [blame] | 310 | zlib = dependency('zlib', required: true, static: enable_static) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 311 | linux_io_uring = not_found |
| 312 | if '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()) |
| 315 | endif |
| 316 | libxml2 = not_found |
| 317 | if 'CONFIG_LIBXML2' in config_host |
| 318 | libxml2 = declare_dependency(compile_args: config_host['LIBXML2_CFLAGS'].split(), |
| 319 | link_args: config_host['LIBXML2_LIBS'].split()) |
| 320 | endif |
| 321 | libnfs = not_found |
| 322 | if 'CONFIG_LIBNFS' in config_host |
| 323 | libnfs = declare_dependency(link_args: config_host['LIBNFS_LIBS'].split()) |
| 324 | endif |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 325 | libattr = not_found |
| 326 | if 'CONFIG_ATTR' in config_host |
| 327 | libattr = declare_dependency(link_args: config_host['LIBATTR_LIBS'].split()) |
| 328 | endif |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 329 | seccomp = not_found |
| 330 | if 'CONFIG_SECCOMP' in config_host |
| 331 | seccomp = declare_dependency(compile_args: config_host['SECCOMP_CFLAGS'].split(), |
| 332 | link_args: config_host['SECCOMP_LIBS'].split()) |
| 333 | endif |
| 334 | libcap_ng = not_found |
| 335 | if 'CONFIG_LIBCAP_NG' in config_host |
| 336 | libcap_ng = declare_dependency(link_args: config_host['LIBCAP_NG_LIBS'].split()) |
| 337 | endif |
Paolo Bonzini | 1917ec6 | 2020-08-26 03:24:11 -0400 | [diff] [blame] | 338 | if get_option('xkbcommon').auto() and not have_system and not have_tools |
| 339 | xkbcommon = not_found |
| 340 | else |
| 341 | xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'), |
Paolo Bonzini | 1a94933 | 2020-08-31 06:27:00 -0400 | [diff] [blame] | 342 | method: 'pkg-config', static: enable_static) |
Marc-André Lureau | ade60d4 | 2019-07-15 14:48:31 +0400 | [diff] [blame] | 343 | endif |
Marc-André Lureau | cdaf072 | 2019-07-22 23:47:50 +0400 | [diff] [blame] | 344 | vde = not_found |
| 345 | if config_host.has_key('CONFIG_VDE') |
| 346 | vde = declare_dependency(link_args: config_host['VDE_LIBS'].split()) |
| 347 | endif |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 348 | pulse = not_found |
| 349 | if 'CONFIG_LIBPULSE' in config_host |
| 350 | pulse = declare_dependency(compile_args: config_host['PULSE_CFLAGS'].split(), |
| 351 | link_args: config_host['PULSE_LIBS'].split()) |
| 352 | endif |
| 353 | alsa = not_found |
| 354 | if 'CONFIG_ALSA' in config_host |
| 355 | alsa = declare_dependency(compile_args: config_host['ALSA_CFLAGS'].split(), |
| 356 | link_args: config_host['ALSA_LIBS'].split()) |
| 357 | endif |
| 358 | jack = not_found |
| 359 | if 'CONFIG_LIBJACK' in config_host |
| 360 | jack = declare_dependency(link_args: config_host['JACK_LIBS'].split()) |
| 361 | endif |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 362 | spice = not_found |
Gerd Hoffmann | d72c34c | 2020-10-14 14:11:18 +0200 | [diff] [blame] | 363 | spice_headers = not_found |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 364 | if '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 Hoffmann | d72c34c | 2020-10-14 14:11:18 +0200 | [diff] [blame] | 367 | spice_headers = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split()) |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 368 | endif |
Marc-André Lureau | 5ee24e7 | 2019-07-12 23:16:54 +0400 | [diff] [blame] | 369 | rt = cc.find_library('rt', required: false) |
Paolo Bonzini | ccf7afa | 2020-09-01 06:44:23 -0400 | [diff] [blame] | 370 | libdl = not_found |
| 371 | if 'CONFIG_PLUGIN' in config_host |
| 372 | libdl = cc.find_library('dl', required: true) |
| 373 | endif |
Paolo Bonzini | 99650b6 | 2019-06-10 12:21:14 +0200 | [diff] [blame] | 374 | libiscsi = not_found |
| 375 | if 'CONFIG_LIBISCSI' in config_host |
| 376 | libiscsi = declare_dependency(compile_args: config_host['LIBISCSI_CFLAGS'].split(), |
| 377 | link_args: config_host['LIBISCSI_LIBS'].split()) |
| 378 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 379 | zstd = not_found |
| 380 | if 'CONFIG_ZSTD' in config_host |
| 381 | zstd = declare_dependency(compile_args: config_host['ZSTD_CFLAGS'].split(), |
| 382 | link_args: config_host['ZSTD_LIBS'].split()) |
| 383 | endif |
Marc-André Lureau | ea45896 | 2019-07-12 22:23:46 +0400 | [diff] [blame] | 384 | gbm = not_found |
| 385 | if 'CONFIG_GBM' in config_host |
| 386 | gbm = declare_dependency(compile_args: config_host['GBM_CFLAGS'].split(), |
| 387 | link_args: config_host['GBM_LIBS'].split()) |
| 388 | endif |
| 389 | virgl = not_found |
| 390 | if 'CONFIG_VIRGL' in config_host |
| 391 | virgl = declare_dependency(compile_args: config_host['VIRGL_CFLAGS'].split(), |
| 392 | link_args: config_host['VIRGL_LIBS'].split()) |
| 393 | endif |
Marc-André Lureau | 1d7bb6a | 2019-07-12 23:47:06 +0400 | [diff] [blame] | 394 | curl = not_found |
| 395 | if 'CONFIG_CURL' in config_host |
| 396 | curl = declare_dependency(compile_args: config_host['CURL_CFLAGS'].split(), |
| 397 | link_args: config_host['CURL_LIBS'].split()) |
| 398 | endif |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 399 | libudev = not_found |
Paolo Bonzini | f01496a | 2020-09-16 17:54:14 +0200 | [diff] [blame] | 400 | if targetos == 'linux' and (have_system or have_tools) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 401 | libudev = dependency('libudev', |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 402 | required: get_option('libudev'), |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 403 | static: enable_static) |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 404 | endif |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 405 | |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 406 | mpathlibs = [libudev] |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 407 | mpathpersist = not_found |
| 408 | mpathpersist_new_api = false |
| 409 | if 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 Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 437 | 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 Bonzini | 43b43a4 | 2020-09-17 12:25:09 +0200 | [diff] [blame] | 446 | endif |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 447 | 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 Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 459 | 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 Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 464 | msg = 'Cannot detect libmpathpersist API' |
| 465 | endif |
| 466 | if not mpathpersist.found() |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 467 | if get_option('mpath').enabled() |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 468 | error(msg) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 469 | else |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 470 | warning(msg + ', disabling') |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 471 | endif |
| 472 | endif |
| 473 | endif |
| 474 | endif |
| 475 | |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 476 | iconv = not_found |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 477 | curses = not_found |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 478 | if have_system and not get_option('curses').disabled() |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 479 | 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 Luo | ca31e30 | 2020-11-17 05:31:06 +0800 | [diff] [blame] | 493 | 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 Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 502 | 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 Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 509 | endif |
| 510 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 511 | 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 Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 522 | libcurses = cc.find_library(curses_libname, |
| 523 | required: false, |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 524 | static: enable_static) |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 525 | 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 Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 533 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 534 | 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 Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 552 | endif |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 553 | endforeach |
| 554 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 555 | 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 Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 565 | else |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 566 | warning(msg + ', disabling') |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 567 | endif |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 568 | endif |
| 569 | endif |
| 570 | |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 571 | brlapi = not_found |
| 572 | if 'CONFIG_BRLAPI' in config_host |
| 573 | brlapi = declare_dependency(link_args: config_host['BRLAPI_LIBS'].split()) |
| 574 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 575 | |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 576 | sdl = not_found |
| 577 | if have_system |
Yonggang Luo | 363743d | 2020-08-26 23:10:03 +0800 | [diff] [blame] | 578 | sdl = dependency('sdl2', required: get_option('sdl'), static: enable_static) |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 579 | sdl_image = not_found |
| 580 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 581 | if sdl.found() |
| 582 | # work around 2.0.8 bug |
| 583 | sdl = declare_dependency(compile_args: '-Wno-undef', |
| 584 | dependencies: sdl) |
Volker Rümelin | 7161a43 | 2020-08-29 12:41:58 +0200 | [diff] [blame] | 585 | sdl_image = dependency('SDL2_image', required: get_option('sdl_image'), |
Paolo Bonzini | 1a94933 | 2020-08-31 06:27:00 -0400 | [diff] [blame] | 586 | method: 'pkg-config', static: enable_static) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 587 | else |
| 588 | if get_option('sdl_image').enabled() |
Sergei Trofimovich | a8dc2ac | 2020-09-08 08:40:16 +0100 | [diff] [blame] | 589 | error('sdl-image required, but SDL was @0@'.format( |
| 590 | get_option('sdl').disabled() ? 'disabled' : 'not found')) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 591 | endif |
| 592 | sdl_image = not_found |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 593 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 594 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 595 | rbd = not_found |
| 596 | if 'CONFIG_RBD' in config_host |
| 597 | rbd = declare_dependency(link_args: config_host['RBD_LIBS'].split()) |
| 598 | endif |
| 599 | glusterfs = not_found |
| 600 | if 'CONFIG_GLUSTERFS' in config_host |
| 601 | glusterfs = declare_dependency(compile_args: config_host['GLUSTERFS_CFLAGS'].split(), |
| 602 | link_args: config_host['GLUSTERFS_LIBS'].split()) |
| 603 | endif |
| 604 | libssh = not_found |
| 605 | if 'CONFIG_LIBSSH' in config_host |
| 606 | libssh = declare_dependency(compile_args: config_host['LIBSSH_CFLAGS'].split(), |
| 607 | link_args: config_host['LIBSSH_LIBS'].split()) |
| 608 | endif |
| 609 | libbzip2 = not_found |
| 610 | if 'CONFIG_BZIP2' in config_host |
| 611 | libbzip2 = declare_dependency(link_args: config_host['BZIP2_LIBS'].split()) |
| 612 | endif |
| 613 | liblzfse = not_found |
| 614 | if 'CONFIG_LZFSE' in config_host |
| 615 | liblzfse = declare_dependency(link_args: config_host['LZFSE_LIBS'].split()) |
| 616 | endif |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 617 | oss = not_found |
| 618 | if 'CONFIG_AUDIO_OSS' in config_host |
| 619 | oss = declare_dependency(link_args: config_host['OSS_LIBS'].split()) |
| 620 | endif |
| 621 | dsound = not_found |
| 622 | if 'CONFIG_AUDIO_DSOUND' in config_host |
| 623 | dsound = declare_dependency(link_args: config_host['DSOUND_LIBS'].split()) |
| 624 | endif |
| 625 | coreaudio = not_found |
| 626 | if 'CONFIG_AUDIO_COREAUDIO' in config_host |
| 627 | coreaudio = declare_dependency(link_args: config_host['COREAUDIO_LIBS'].split()) |
| 628 | endif |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 629 | opengl = not_found |
| 630 | if 'CONFIG_OPENGL' in config_host |
Paolo Bonzini | de2d300 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 631 | opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(), |
| 632 | link_args: config_host['OPENGL_LIBS'].split()) |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 633 | endif |
| 634 | gtk = not_found |
| 635 | if 'CONFIG_GTK' in config_host |
| 636 | gtk = declare_dependency(compile_args: config_host['GTK_CFLAGS'].split(), |
| 637 | link_args: config_host['GTK_LIBS'].split()) |
| 638 | endif |
| 639 | vte = not_found |
| 640 | if 'CONFIG_VTE' in config_host |
| 641 | vte = declare_dependency(compile_args: config_host['VTE_CFLAGS'].split(), |
| 642 | link_args: config_host['VTE_LIBS'].split()) |
| 643 | endif |
| 644 | x11 = not_found |
| 645 | if 'CONFIG_X11' in config_host |
| 646 | x11 = declare_dependency(compile_args: config_host['X11_CFLAGS'].split(), |
| 647 | link_args: config_host['X11_LIBS'].split()) |
| 648 | endif |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 649 | vnc = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 650 | png = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 651 | jpeg = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 652 | sasl = not_found |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 653 | if get_option('vnc').enabled() |
| 654 | vnc = declare_dependency() # dummy dependency |
| 655 | png = dependency('libpng', required: get_option('vnc_png'), |
Paolo Bonzini | 1a94933 | 2020-08-31 06:27:00 -0400 | [diff] [blame] | 656 | method: 'pkg-config', static: enable_static) |
Paolo Bonzini | 8e242b3 | 2020-11-23 13:34:02 -0500 | [diff] [blame] | 657 | jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'), |
| 658 | method: 'pkg-config', static: enable_static) |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 659 | 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é Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 666 | endif |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 667 | snappy = not_found |
| 668 | if 'CONFIG_SNAPPY' in config_host |
| 669 | snappy = declare_dependency(link_args: config_host['SNAPPY_LIBS'].split()) |
| 670 | endif |
| 671 | lzo = not_found |
| 672 | if 'CONFIG_LZO' in config_host |
| 673 | lzo = declare_dependency(link_args: config_host['LZO_LIBS'].split()) |
| 674 | endif |
Marc-André Lureau | 5516623 | 2019-07-24 19:16:22 +0400 | [diff] [blame] | 675 | rdma = not_found |
| 676 | if 'CONFIG_RDMA' in config_host |
| 677 | rdma = declare_dependency(link_args: config_host['RDMA_LIBS'].split()) |
| 678 | endif |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 679 | numa = not_found |
| 680 | if 'CONFIG_NUMA' in config_host |
| 681 | numa = declare_dependency(link_args: config_host['NUMA_LIBS'].split()) |
| 682 | endif |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 683 | xen = not_found |
| 684 | if '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()) |
| 687 | endif |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 688 | cacard = not_found |
| 689 | if 'CONFIG_SMARTCARD' in config_host |
| 690 | cacard = declare_dependency(compile_args: config_host['SMARTCARD_CFLAGS'].split(), |
| 691 | link_args: config_host['SMARTCARD_LIBS'].split()) |
| 692 | endif |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 693 | u2f = not_found |
| 694 | if have_system |
| 695 | u2f = dependency('u2f-emu', required: get_option('u2f'), |
| 696 | method: 'pkg-config', |
| 697 | static: enable_static) |
| 698 | endif |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 699 | usbredir = not_found |
| 700 | if '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()) |
| 703 | endif |
| 704 | libusb = not_found |
| 705 | if '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()) |
| 708 | endif |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 709 | libpmem = not_found |
| 710 | if 'CONFIG_LIBPMEM' in config_host |
| 711 | libpmem = declare_dependency(compile_args: config_host['LIBPMEM_CFLAGS'].split(), |
| 712 | link_args: config_host['LIBPMEM_LIBS'].split()) |
| 713 | endif |
Bruce Rogers | c7c91a7 | 2020-08-24 09:52:12 -0600 | [diff] [blame] | 714 | libdaxctl = not_found |
| 715 | if 'CONFIG_LIBDAXCTL' in config_host |
| 716 | libdaxctl = declare_dependency(link_args: config_host['LIBDAXCTL_LIBS'].split()) |
| 717 | endif |
Marc-André Lureau | 8ce0a45 | 2020-08-28 15:07:20 +0400 | [diff] [blame] | 718 | tasn1 = not_found |
| 719 | if 'CONFIG_TASN1' in config_host |
| 720 | tasn1 = declare_dependency(compile_args: config_host['TASN1_CFLAGS'].split(), |
| 721 | link_args: config_host['TASN1_LIBS'].split()) |
| 722 | endif |
Marc-André Lureau | af04e89 | 2020-08-28 15:07:25 +0400 | [diff] [blame] | 723 | keyutils = dependency('libkeyutils', required: false, |
| 724 | method: 'pkg-config', static: enable_static) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 725 | |
Marc-André Lureau | 3909def | 2020-08-28 15:07:33 +0400 | [diff] [blame] | 726 | has_gettid = cc.has_function('gettid') |
| 727 | |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 728 | # Malloc tests |
| 729 | |
| 730 | malloc = [] |
| 731 | if 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; }''') |
| 736 | else |
| 737 | has_malloc_trim = false |
| 738 | malloc = cc.find_library(get_option('malloc'), required: true) |
| 739 | endif |
| 740 | if 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 |
| 746 | endif |
| 747 | |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 748 | # Check whether the glibc provides statx() |
| 749 | |
| 750 | statx_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 | |
| 761 | has_statx = cc.links(statx_test) |
| 762 | |
Stefan Hajnoczi | eb6a388 | 2020-11-10 17:11:20 +0000 | [diff] [blame] | 763 | have_vhost_user_blk_server = (targetos == 'linux' and |
| 764 | 'CONFIG_VHOST_USER' in config_host) |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 765 | |
| 766 | if get_option('vhost_user_blk_server').enabled() |
| 767 | if targetos != 'linux' |
| 768 | error('vhost_user_blk_server requires linux') |
Stefan Hajnoczi | eb6a388 | 2020-11-10 17:11:20 +0000 | [diff] [blame] | 769 | elif 'CONFIG_VHOST_USER' not in config_host |
| 770 | error('vhost_user_blk_server requires vhost-user support') |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 771 | endif |
| 772 | elif get_option('vhost_user_blk_server').disabled() or not have_system |
| 773 | have_vhost_user_blk_server = false |
| 774 | endif |
| 775 | |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 776 | if get_option('fuse').disabled() and get_option('fuse_lseek').enabled() |
| 777 | error('Cannot enable fuse-lseek while fuse is disabled') |
| 778 | endif |
| 779 | |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 780 | fuse = dependency('fuse3', required: get_option('fuse'), |
| 781 | version: '>=3.1', method: 'pkg-config', |
| 782 | static: enable_static) |
| 783 | |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 784 | fuse_lseek = not_found |
| 785 | if not get_option('fuse_lseek').disabled() |
| 786 | if fuse.version().version_compare('>=3.8') |
| 787 | # Dummy dependency |
| 788 | fuse_lseek = declare_dependency() |
| 789 | elif get_option('fuse_lseek').enabled() |
| 790 | if fuse.found() |
| 791 | error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version()) |
| 792 | else |
| 793 | error('fuse-lseek requires libfuse, which was not found') |
| 794 | endif |
| 795 | endif |
| 796 | endif |
| 797 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 798 | ################# |
| 799 | # config-host.h # |
| 800 | ################# |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 801 | |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 802 | config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir')) |
| 803 | config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix')) |
| 804 | config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir) |
| 805 | config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir) |
| 806 | config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir) |
| 807 | config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath')) |
| 808 | config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir')) |
| 809 | config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir) |
| 810 | config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir')) |
| 811 | config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir')) |
| 812 | config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir) |
| 813 | config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir')) |
| 814 | |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 815 | config_host_data.set('CONFIG_COCOA', cocoa.found()) |
Paolo Bonzini | f01496a | 2020-09-16 17:54:14 +0200 | [diff] [blame] | 816 | config_host_data.set('CONFIG_LIBUDEV', libudev.found()) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 817 | config_host_data.set('CONFIG_MPATH', mpathpersist.found()) |
| 818 | config_host_data.set('CONFIG_MPATH_NEW_API', mpathpersist_new_api) |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 819 | config_host_data.set('CONFIG_CURSES', curses.found()) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 820 | config_host_data.set('CONFIG_SDL', sdl.found()) |
| 821 | config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found()) |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 822 | config_host_data.set('CONFIG_VHOST_USER_BLK_SERVER', have_vhost_user_blk_server) |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 823 | config_host_data.set('CONFIG_VNC', vnc.found()) |
| 824 | config_host_data.set('CONFIG_VNC_JPEG', jpeg.found()) |
| 825 | config_host_data.set('CONFIG_VNC_PNG', png.found()) |
| 826 | config_host_data.set('CONFIG_VNC_SASL', sasl.found()) |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 827 | config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found()) |
Marc-André Lureau | af04e89 | 2020-08-28 15:07:25 +0400 | [diff] [blame] | 828 | config_host_data.set('CONFIG_KEYUTILS', keyutils.found()) |
Marc-André Lureau | 3909def | 2020-08-28 15:07:33 +0400 | [diff] [blame] | 829 | config_host_data.set('CONFIG_GETTID', has_gettid) |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 830 | config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim) |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 831 | config_host_data.set('CONFIG_STATX', has_statx) |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 832 | config_host_data.set('CONFIG_FUSE', fuse.found()) |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 833 | config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found()) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 834 | config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version())) |
| 835 | config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0]) |
| 836 | config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1]) |
| 837 | config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2]) |
| 838 | |
Thomas Huth | 2964be5 | 2020-11-18 18:10:49 +0100 | [diff] [blame] | 839 | config_host_data.set('HAVE_DRM_H', cc.has_header('libdrm/drm.h')) |
Thomas Huth | 2802d91 | 2020-11-18 18:10:48 +0100 | [diff] [blame] | 840 | config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h')) |
Thomas Huth | ded5d78 | 2020-11-14 11:10:11 +0100 | [diff] [blame] | 841 | config_host_data.set('HAVE_SYS_IOCCOM_H', cc.has_header('sys/ioccom.h')) |
Thomas Huth | 88c78f1 | 2020-11-18 18:10:50 +0100 | [diff] [blame^] | 842 | config_host_data.set('HAVE_SYS_SIGNAL_H', cc.has_header('sys/signal.h')) |
Thomas Huth | ded5d78 | 2020-11-14 11:10:11 +0100 | [diff] [blame] | 843 | |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 844 | ignored = ['CONFIG_QEMU_INTERP_PREFIX'] # actually per-target |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 845 | arrays = ['CONFIG_AUDIO_DRIVERS', 'CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST'] |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 846 | strings = ['HOST_DSOSUF', 'CONFIG_IASL'] |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 847 | foreach k, v: config_host |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 848 | if ignored.contains(k) |
| 849 | # do nothing |
| 850 | elif arrays.contains(k) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 851 | if v != '' |
| 852 | v = '"' + '", "'.join(v.split()) + '", ' |
| 853 | endif |
| 854 | config_host_data.set(k, v) |
| 855 | elif k == 'ARCH' |
| 856 | config_host_data.set('HOST_' + v.to_upper(), 1) |
| 857 | elif strings.contains(k) |
| 858 | if not k.startswith('CONFIG_') |
| 859 | k = 'CONFIG_' + k.to_upper() |
| 860 | endif |
| 861 | config_host_data.set_quoted(k, v) |
| 862 | elif k.startswith('CONFIG_') or k.startswith('HAVE_') or k.startswith('HOST_') |
| 863 | config_host_data.set(k, v == 'y' ? 1 : v) |
| 864 | endif |
| 865 | endforeach |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 866 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 867 | ######################## |
| 868 | # Target configuration # |
| 869 | ######################## |
| 870 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 871 | minikconf = find_program('scripts/minikconf.py') |
Paolo Bonzini | 05512f5 | 2020-09-16 15:31:11 -0400 | [diff] [blame] | 872 | config_all = {} |
Paolo Bonzini | a98006b | 2020-09-01 05:32:23 -0400 | [diff] [blame] | 873 | config_all_devices = {} |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 874 | config_all_disas = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 875 | config_devices_mak_list = [] |
| 876 | config_devices_h = {} |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 877 | config_target_h = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 878 | config_target_mak = {} |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 879 | |
| 880 | disassemblers = { |
| 881 | 'alpha' : ['CONFIG_ALPHA_DIS'], |
| 882 | 'arm' : ['CONFIG_ARM_DIS'], |
| 883 | 'avr' : ['CONFIG_AVR_DIS'], |
| 884 | 'cris' : ['CONFIG_CRIS_DIS'], |
| 885 | 'hppa' : ['CONFIG_HPPA_DIS'], |
| 886 | 'i386' : ['CONFIG_I386_DIS'], |
| 887 | 'x86_64' : ['CONFIG_I386_DIS'], |
| 888 | 'x32' : ['CONFIG_I386_DIS'], |
| 889 | 'lm32' : ['CONFIG_LM32_DIS'], |
| 890 | 'm68k' : ['CONFIG_M68K_DIS'], |
| 891 | 'microblaze' : ['CONFIG_MICROBLAZE_DIS'], |
| 892 | 'mips' : ['CONFIG_MIPS_DIS'], |
| 893 | 'moxie' : ['CONFIG_MOXIE_DIS'], |
| 894 | 'nios2' : ['CONFIG_NIOS2_DIS'], |
| 895 | 'or1k' : ['CONFIG_OPENRISC_DIS'], |
| 896 | 'ppc' : ['CONFIG_PPC_DIS'], |
| 897 | 'riscv' : ['CONFIG_RISCV_DIS'], |
| 898 | 'rx' : ['CONFIG_RX_DIS'], |
| 899 | 's390' : ['CONFIG_S390_DIS'], |
| 900 | 'sh4' : ['CONFIG_SH4_DIS'], |
| 901 | 'sparc' : ['CONFIG_SPARC_DIS'], |
| 902 | 'xtensa' : ['CONFIG_XTENSA_DIS'], |
| 903 | } |
| 904 | if link_language == 'cpp' |
| 905 | disassemblers += { |
| 906 | 'aarch64' : [ 'CONFIG_ARM_A64_DIS'], |
| 907 | 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'], |
| 908 | 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'], |
| 909 | } |
| 910 | endif |
| 911 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 912 | kconfig_external_symbols = [ |
| 913 | 'CONFIG_KVM', |
| 914 | 'CONFIG_XEN', |
| 915 | 'CONFIG_TPM', |
| 916 | 'CONFIG_SPICE', |
| 917 | 'CONFIG_IVSHMEM', |
| 918 | 'CONFIG_OPENGL', |
| 919 | 'CONFIG_X11', |
| 920 | 'CONFIG_VHOST_USER', |
Laurent Vivier | 40bc0ca | 2020-09-24 23:00:23 +0200 | [diff] [blame] | 921 | 'CONFIG_VHOST_VDPA', |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 922 | 'CONFIG_VHOST_KERNEL', |
| 923 | 'CONFIG_VIRTFS', |
| 924 | 'CONFIG_LINUX', |
| 925 | 'CONFIG_PVRDMA', |
| 926 | ] |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 927 | ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ] |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 928 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 929 | default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host |
| 930 | actual_target_dirs = [] |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 931 | fdt_required = [] |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 932 | foreach target : target_dirs |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 933 | config_target = { 'TARGET_NAME': target.split('-')[0] } |
| 934 | if target.endswith('linux-user') |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 935 | if targetos != 'linux' |
| 936 | if default_targets |
| 937 | continue |
| 938 | endif |
| 939 | error('Target @0@ is only available on a Linux host'.format(target)) |
| 940 | endif |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 941 | config_target += { 'CONFIG_LINUX_USER': 'y' } |
| 942 | elif target.endswith('bsd-user') |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 943 | if 'CONFIG_BSD' not in config_host |
| 944 | if default_targets |
| 945 | continue |
| 946 | endif |
| 947 | error('Target @0@ is only available on a BSD host'.format(target)) |
| 948 | endif |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 949 | config_target += { 'CONFIG_BSD_USER': 'y' } |
| 950 | elif target.endswith('softmmu') |
| 951 | config_target += { 'CONFIG_SOFTMMU': 'y' } |
| 952 | endif |
| 953 | if target.endswith('-user') |
| 954 | config_target += { |
| 955 | 'CONFIG_USER_ONLY': 'y', |
| 956 | 'CONFIG_QEMU_INTERP_PREFIX': |
| 957 | config_host['CONFIG_QEMU_INTERP_PREFIX'].format(config_target['TARGET_NAME']) |
| 958 | } |
| 959 | endif |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 960 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 961 | have_accel = false |
| 962 | foreach sym: accelerators |
| 963 | if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, []) |
| 964 | config_target += { sym: 'y' } |
| 965 | config_all += { sym: 'y' } |
| 966 | if sym == 'CONFIG_XEN' and have_xen_pci_passthrough |
| 967 | config_target += { 'CONFIG_XEN_PCI_PASSTHROUGH': 'y' } |
| 968 | endif |
| 969 | have_accel = true |
| 970 | endif |
| 971 | endforeach |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 972 | if not have_accel |
| 973 | if default_targets |
| 974 | continue |
| 975 | endif |
| 976 | error('No accelerator available for target @0@'.format(target)) |
| 977 | endif |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 978 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 979 | actual_target_dirs += target |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 980 | config_target += keyval.load('default-configs/targets' / target + '.mak') |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 981 | config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' } |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 982 | |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 983 | if 'TARGET_NEED_FDT' in config_target |
| 984 | fdt_required += target |
| 985 | endif |
| 986 | |
Paolo Bonzini | fa73168 | 2020-09-21 05:19:07 -0400 | [diff] [blame] | 987 | # Add default keys |
| 988 | if 'TARGET_BASE_ARCH' not in config_target |
| 989 | config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']} |
| 990 | endif |
| 991 | if 'TARGET_ABI_DIR' not in config_target |
| 992 | config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']} |
| 993 | endif |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 994 | |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 995 | foreach k, v: disassemblers |
| 996 | if config_host['ARCH'].startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k) |
| 997 | foreach sym: v |
| 998 | config_target += { sym: 'y' } |
| 999 | config_all_disas += { sym: 'y' } |
| 1000 | endforeach |
| 1001 | endif |
| 1002 | endforeach |
| 1003 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1004 | config_target_data = configuration_data() |
| 1005 | foreach k, v: config_target |
| 1006 | if not k.startswith('TARGET_') and not k.startswith('CONFIG_') |
| 1007 | # do nothing |
| 1008 | elif ignored.contains(k) |
| 1009 | # do nothing |
| 1010 | elif k == 'TARGET_BASE_ARCH' |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 1011 | # Note that TARGET_BASE_ARCH ends up in config-target.h but it is |
| 1012 | # not used to select files from sourcesets. |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1013 | config_target_data.set('TARGET_' + v.to_upper(), 1) |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1014 | elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX' |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1015 | config_target_data.set_quoted(k, v) |
| 1016 | elif v == 'y' |
| 1017 | config_target_data.set(k, 1) |
| 1018 | else |
| 1019 | config_target_data.set(k, v) |
| 1020 | endif |
| 1021 | endforeach |
| 1022 | config_target_h += {target: configure_file(output: target + '-config-target.h', |
| 1023 | configuration: config_target_data)} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1024 | |
| 1025 | if target.endswith('-softmmu') |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1026 | base_kconfig = [] |
| 1027 | foreach sym : kconfig_external_symbols |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1028 | if sym in config_target or sym in config_host |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1029 | base_kconfig += '@0@=y'.format(sym) |
| 1030 | endif |
| 1031 | endforeach |
| 1032 | |
| 1033 | config_devices_mak = target + '-config-devices.mak' |
| 1034 | config_devices_mak = configure_file( |
Paolo Bonzini | 1bb4cb1 | 2020-09-18 06:06:09 -0400 | [diff] [blame] | 1035 | input: ['default-configs/devices' / target + '.mak', 'Kconfig'], |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1036 | output: config_devices_mak, |
| 1037 | depfile: config_devices_mak + '.d', |
| 1038 | capture: true, |
| 1039 | command: [minikconf, config_host['CONFIG_MINIKCONF_MODE'], |
| 1040 | config_devices_mak, '@DEPFILE@', '@INPUT@', |
| 1041 | base_kconfig]) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1042 | |
| 1043 | config_devices_data = configuration_data() |
| 1044 | config_devices = keyval.load(config_devices_mak) |
| 1045 | foreach k, v: config_devices |
| 1046 | config_devices_data.set(k, 1) |
| 1047 | endforeach |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1048 | config_devices_mak_list += config_devices_mak |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1049 | config_devices_h += {target: configure_file(output: target + '-config-devices.h', |
| 1050 | configuration: config_devices_data)} |
| 1051 | config_target += config_devices |
Paolo Bonzini | a98006b | 2020-09-01 05:32:23 -0400 | [diff] [blame] | 1052 | config_all_devices += config_devices |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1053 | endif |
| 1054 | config_target_mak += {target: config_target} |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1055 | endforeach |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1056 | target_dirs = actual_target_dirs |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1057 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1058 | # This configuration is used to build files that are shared by |
| 1059 | # multiple binaries, and then extracted out of the "common" |
| 1060 | # static_library target. |
| 1061 | # |
| 1062 | # We do not use all_sources()/all_dependencies(), because it would |
| 1063 | # build literally all source files, including devices only used by |
| 1064 | # targets that are not built for this compilation. The CONFIG_ALL |
| 1065 | # pseudo symbol replaces it. |
| 1066 | |
Paolo Bonzini | 05512f5 | 2020-09-16 15:31:11 -0400 | [diff] [blame] | 1067 | config_all += config_all_devices |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1068 | config_all += config_host |
| 1069 | config_all += config_all_disas |
| 1070 | config_all += { |
| 1071 | 'CONFIG_XEN': config_host.has_key('CONFIG_XEN_BACKEND'), |
| 1072 | 'CONFIG_SOFTMMU': have_system, |
| 1073 | 'CONFIG_USER_ONLY': have_user, |
| 1074 | 'CONFIG_ALL': true, |
| 1075 | } |
| 1076 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1077 | ############## |
| 1078 | # Submodules # |
| 1079 | ############## |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1080 | |
| 1081 | capstone = not_found |
| 1082 | capstone_opt = get_option('capstone') |
| 1083 | if capstone_opt in ['enabled', 'auto', 'system'] |
| 1084 | have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile') |
Richard Henderson | bcf3686 | 2020-09-21 09:46:16 -0700 | [diff] [blame] | 1085 | capstone = dependency('capstone', version: '>=4.0', |
| 1086 | static: enable_static, method: 'pkg-config', |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1087 | required: capstone_opt == 'system' or |
| 1088 | capstone_opt == 'enabled' and not have_internal) |
| 1089 | if capstone.found() |
| 1090 | capstone_opt = 'system' |
| 1091 | elif have_internal |
| 1092 | capstone_opt = 'internal' |
| 1093 | else |
| 1094 | capstone_opt = 'disabled' |
| 1095 | endif |
| 1096 | endif |
| 1097 | if capstone_opt == 'internal' |
| 1098 | capstone_data = configuration_data() |
| 1099 | capstone_data.set('CAPSTONE_USE_SYS_DYN_MEM', '1') |
| 1100 | |
| 1101 | capstone_files = files( |
| 1102 | 'capstone/cs.c', |
| 1103 | 'capstone/MCInst.c', |
| 1104 | 'capstone/MCInstrDesc.c', |
| 1105 | 'capstone/MCRegisterInfo.c', |
| 1106 | 'capstone/SStream.c', |
| 1107 | 'capstone/utils.c' |
| 1108 | ) |
| 1109 | |
| 1110 | if 'CONFIG_ARM_DIS' in config_all_disas |
| 1111 | capstone_data.set('CAPSTONE_HAS_ARM', '1') |
| 1112 | capstone_files += files( |
| 1113 | 'capstone/arch/ARM/ARMDisassembler.c', |
| 1114 | 'capstone/arch/ARM/ARMInstPrinter.c', |
| 1115 | 'capstone/arch/ARM/ARMMapping.c', |
| 1116 | 'capstone/arch/ARM/ARMModule.c' |
| 1117 | ) |
| 1118 | endif |
| 1119 | |
| 1120 | # FIXME: This config entry currently depends on a c++ compiler. |
| 1121 | # Which is needed for building libvixl, but not for capstone. |
| 1122 | if 'CONFIG_ARM_A64_DIS' in config_all_disas |
| 1123 | capstone_data.set('CAPSTONE_HAS_ARM64', '1') |
| 1124 | capstone_files += files( |
| 1125 | 'capstone/arch/AArch64/AArch64BaseInfo.c', |
| 1126 | 'capstone/arch/AArch64/AArch64Disassembler.c', |
| 1127 | 'capstone/arch/AArch64/AArch64InstPrinter.c', |
| 1128 | 'capstone/arch/AArch64/AArch64Mapping.c', |
| 1129 | 'capstone/arch/AArch64/AArch64Module.c' |
| 1130 | ) |
| 1131 | endif |
| 1132 | |
| 1133 | if 'CONFIG_PPC_DIS' in config_all_disas |
| 1134 | capstone_data.set('CAPSTONE_HAS_POWERPC', '1') |
| 1135 | capstone_files += files( |
| 1136 | 'capstone/arch/PowerPC/PPCDisassembler.c', |
| 1137 | 'capstone/arch/PowerPC/PPCInstPrinter.c', |
| 1138 | 'capstone/arch/PowerPC/PPCMapping.c', |
| 1139 | 'capstone/arch/PowerPC/PPCModule.c' |
| 1140 | ) |
| 1141 | endif |
| 1142 | |
Richard Henderson | 3d56284 | 2020-01-04 07:24:59 +1000 | [diff] [blame] | 1143 | if 'CONFIG_S390_DIS' in config_all_disas |
| 1144 | capstone_data.set('CAPSTONE_HAS_SYSZ', '1') |
| 1145 | capstone_files += files( |
| 1146 | 'capstone/arch/SystemZ/SystemZDisassembler.c', |
| 1147 | 'capstone/arch/SystemZ/SystemZInstPrinter.c', |
| 1148 | 'capstone/arch/SystemZ/SystemZMapping.c', |
| 1149 | 'capstone/arch/SystemZ/SystemZModule.c', |
| 1150 | 'capstone/arch/SystemZ/SystemZMCTargetDesc.c' |
| 1151 | ) |
| 1152 | endif |
| 1153 | |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1154 | if 'CONFIG_I386_DIS' in config_all_disas |
| 1155 | capstone_data.set('CAPSTONE_HAS_X86', 1) |
| 1156 | capstone_files += files( |
| 1157 | 'capstone/arch/X86/X86Disassembler.c', |
| 1158 | 'capstone/arch/X86/X86DisassemblerDecoder.c', |
| 1159 | 'capstone/arch/X86/X86ATTInstPrinter.c', |
| 1160 | 'capstone/arch/X86/X86IntelInstPrinter.c', |
Richard Henderson | eef20e4 | 2020-09-14 16:02:02 -0700 | [diff] [blame] | 1161 | 'capstone/arch/X86/X86InstPrinterCommon.c', |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1162 | 'capstone/arch/X86/X86Mapping.c', |
| 1163 | 'capstone/arch/X86/X86Module.c' |
| 1164 | ) |
| 1165 | endif |
| 1166 | |
| 1167 | configure_file(output: 'capstone-defs.h', configuration: capstone_data) |
| 1168 | |
| 1169 | capstone_cargs = [ |
| 1170 | # FIXME: There does not seem to be a way to completely replace the c_args |
| 1171 | # that come from add_project_arguments() -- we can only add to them. |
| 1172 | # So: disable all warnings with a big hammer. |
| 1173 | '-Wno-error', '-w', |
| 1174 | |
| 1175 | # Include all configuration defines via a header file, which will wind up |
| 1176 | # as a dependency on the object file, and thus changes here will result |
| 1177 | # in a rebuild. |
| 1178 | '-include', 'capstone-defs.h' |
| 1179 | ] |
| 1180 | |
| 1181 | libcapstone = static_library('capstone', |
| 1182 | sources: capstone_files, |
| 1183 | c_args: capstone_cargs, |
| 1184 | include_directories: 'capstone/include') |
| 1185 | capstone = declare_dependency(link_with: libcapstone, |
Richard Henderson | eef20e4 | 2020-09-14 16:02:02 -0700 | [diff] [blame] | 1186 | include_directories: 'capstone/include/capstone') |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1187 | endif |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1188 | |
| 1189 | slirp = not_found |
| 1190 | slirp_opt = 'disabled' |
| 1191 | if have_system |
| 1192 | slirp_opt = get_option('slirp') |
| 1193 | if slirp_opt in ['enabled', 'auto', 'system'] |
| 1194 | have_internal = fs.exists(meson.current_source_dir() / 'slirp/meson.build') |
| 1195 | slirp = dependency('slirp', static: enable_static, |
| 1196 | method: 'pkg-config', |
| 1197 | required: slirp_opt == 'system' or |
| 1198 | slirp_opt == 'enabled' and not have_internal) |
| 1199 | if slirp.found() |
| 1200 | slirp_opt = 'system' |
| 1201 | elif have_internal |
| 1202 | slirp_opt = 'internal' |
| 1203 | else |
| 1204 | slirp_opt = 'disabled' |
| 1205 | endif |
| 1206 | endif |
| 1207 | if slirp_opt == 'internal' |
| 1208 | slirp_deps = [] |
| 1209 | if targetos == 'windows' |
| 1210 | slirp_deps = cc.find_library('iphlpapi') |
| 1211 | endif |
| 1212 | slirp_conf = configuration_data() |
| 1213 | slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0]) |
| 1214 | slirp_conf.set('SLIRP_MINOR_VERSION', meson.project_version().split('.')[1]) |
| 1215 | slirp_conf.set('SLIRP_MICRO_VERSION', meson.project_version().split('.')[2]) |
| 1216 | slirp_conf.set_quoted('SLIRP_VERSION_STRING', meson.project_version()) |
| 1217 | slirp_cargs = ['-DG_LOG_DOMAIN="Slirp"'] |
| 1218 | slirp_files = [ |
| 1219 | 'slirp/src/arp_table.c', |
| 1220 | 'slirp/src/bootp.c', |
| 1221 | 'slirp/src/cksum.c', |
| 1222 | 'slirp/src/dhcpv6.c', |
| 1223 | 'slirp/src/dnssearch.c', |
| 1224 | 'slirp/src/if.c', |
| 1225 | 'slirp/src/ip6_icmp.c', |
| 1226 | 'slirp/src/ip6_input.c', |
| 1227 | 'slirp/src/ip6_output.c', |
| 1228 | 'slirp/src/ip_icmp.c', |
| 1229 | 'slirp/src/ip_input.c', |
| 1230 | 'slirp/src/ip_output.c', |
| 1231 | 'slirp/src/mbuf.c', |
| 1232 | 'slirp/src/misc.c', |
| 1233 | 'slirp/src/ncsi.c', |
| 1234 | 'slirp/src/ndp_table.c', |
| 1235 | 'slirp/src/sbuf.c', |
| 1236 | 'slirp/src/slirp.c', |
| 1237 | 'slirp/src/socket.c', |
| 1238 | 'slirp/src/state.c', |
| 1239 | 'slirp/src/stream.c', |
| 1240 | 'slirp/src/tcp_input.c', |
| 1241 | 'slirp/src/tcp_output.c', |
| 1242 | 'slirp/src/tcp_subr.c', |
| 1243 | 'slirp/src/tcp_timer.c', |
| 1244 | 'slirp/src/tftp.c', |
| 1245 | 'slirp/src/udp.c', |
| 1246 | 'slirp/src/udp6.c', |
| 1247 | 'slirp/src/util.c', |
| 1248 | 'slirp/src/version.c', |
| 1249 | 'slirp/src/vmstate.c', |
| 1250 | ] |
| 1251 | |
| 1252 | configure_file( |
| 1253 | input : 'slirp/src/libslirp-version.h.in', |
| 1254 | output : 'libslirp-version.h', |
| 1255 | configuration: slirp_conf) |
| 1256 | |
| 1257 | slirp_inc = include_directories('slirp', 'slirp/src') |
| 1258 | libslirp = static_library('slirp', |
| 1259 | sources: slirp_files, |
| 1260 | c_args: slirp_cargs, |
| 1261 | include_directories: slirp_inc) |
| 1262 | slirp = declare_dependency(link_with: libslirp, |
| 1263 | dependencies: slirp_deps, |
| 1264 | include_directories: slirp_inc) |
| 1265 | endif |
| 1266 | endif |
| 1267 | |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1268 | fdt = not_found |
| 1269 | fdt_opt = get_option('fdt') |
| 1270 | if have_system |
| 1271 | if fdt_opt in ['enabled', 'auto', 'system'] |
| 1272 | have_internal = fs.exists(meson.current_source_dir() / 'dtc/libfdt/Makefile.libfdt') |
| 1273 | fdt = cc.find_library('fdt', static: enable_static, |
| 1274 | required: fdt_opt == 'system' or |
| 1275 | fdt_opt == 'enabled' and not have_internal) |
| 1276 | if fdt.found() and cc.links(''' |
| 1277 | #include <libfdt.h> |
| 1278 | #include <libfdt_env.h> |
| 1279 | int main(void) { fdt_check_full(NULL, 0); return 0; }''', |
| 1280 | dependencies: fdt) |
| 1281 | fdt_opt = 'system' |
| 1282 | elif have_internal |
| 1283 | fdt_opt = 'internal' |
| 1284 | else |
| 1285 | fdt_opt = 'disabled' |
| 1286 | endif |
| 1287 | endif |
| 1288 | if fdt_opt == 'internal' |
| 1289 | fdt_files = files( |
| 1290 | 'dtc/libfdt/fdt.c', |
| 1291 | 'dtc/libfdt/fdt_ro.c', |
| 1292 | 'dtc/libfdt/fdt_wip.c', |
| 1293 | 'dtc/libfdt/fdt_sw.c', |
| 1294 | 'dtc/libfdt/fdt_rw.c', |
| 1295 | 'dtc/libfdt/fdt_strerror.c', |
| 1296 | 'dtc/libfdt/fdt_empty_tree.c', |
| 1297 | 'dtc/libfdt/fdt_addresses.c', |
| 1298 | 'dtc/libfdt/fdt_overlay.c', |
| 1299 | 'dtc/libfdt/fdt_check.c', |
| 1300 | ) |
| 1301 | |
| 1302 | fdt_inc = include_directories('dtc/libfdt') |
| 1303 | libfdt = static_library('fdt', |
| 1304 | sources: fdt_files, |
| 1305 | include_directories: fdt_inc) |
| 1306 | fdt = declare_dependency(link_with: libfdt, |
| 1307 | include_directories: fdt_inc) |
| 1308 | endif |
| 1309 | endif |
| 1310 | if not fdt.found() and fdt_required.length() > 0 |
| 1311 | error('fdt not available but required by targets ' + ', '.join(fdt_required)) |
| 1312 | endif |
| 1313 | |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1314 | config_host_data.set('CONFIG_CAPSTONE', capstone.found()) |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1315 | config_host_data.set('CONFIG_FDT', fdt.found()) |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1316 | config_host_data.set('CONFIG_SLIRP', slirp.found()) |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1317 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1318 | ##################### |
| 1319 | # Generated sources # |
| 1320 | ##################### |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1321 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1322 | genh += configure_file(output: 'config-host.h', configuration: config_host_data) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1323 | |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 1324 | hxtool = find_program('scripts/hxtool') |
Marc-André Lureau | 650b5d5 | 2019-07-15 17:36:47 +0400 | [diff] [blame] | 1325 | shaderinclude = find_program('scripts/shaderinclude.pl') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1326 | qapi_gen = find_program('scripts/qapi-gen.py') |
| 1327 | qapi_gen_depends = [ meson.source_root() / 'scripts/qapi/__init__.py', |
| 1328 | meson.source_root() / 'scripts/qapi/commands.py', |
| 1329 | meson.source_root() / 'scripts/qapi/common.py', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1330 | meson.source_root() / 'scripts/qapi/error.py', |
| 1331 | meson.source_root() / 'scripts/qapi/events.py', |
| 1332 | meson.source_root() / 'scripts/qapi/expr.py', |
| 1333 | meson.source_root() / 'scripts/qapi/gen.py', |
| 1334 | meson.source_root() / 'scripts/qapi/introspect.py', |
| 1335 | meson.source_root() / 'scripts/qapi/parser.py', |
| 1336 | meson.source_root() / 'scripts/qapi/schema.py', |
| 1337 | meson.source_root() / 'scripts/qapi/source.py', |
| 1338 | meson.source_root() / 'scripts/qapi/types.py', |
| 1339 | meson.source_root() / 'scripts/qapi/visit.py', |
| 1340 | meson.source_root() / 'scripts/qapi/common.py', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1341 | meson.source_root() / 'scripts/qapi-gen.py' |
| 1342 | ] |
| 1343 | |
| 1344 | tracetool = [ |
| 1345 | python, files('scripts/tracetool.py'), |
| 1346 | '--backend=' + config_host['TRACE_BACKENDS'] |
| 1347 | ] |
| 1348 | |
Marc-André Lureau | 2c273f3 | 2019-07-15 17:10:19 +0400 | [diff] [blame] | 1349 | qemu_version_cmd = [find_program('scripts/qemu-version.sh'), |
| 1350 | meson.current_source_dir(), |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1351 | config_host['PKGVERSION'], meson.project_version()] |
Marc-André Lureau | 2c273f3 | 2019-07-15 17:10:19 +0400 | [diff] [blame] | 1352 | qemu_version = custom_target('qemu-version.h', |
| 1353 | output: 'qemu-version.h', |
| 1354 | command: qemu_version_cmd, |
| 1355 | capture: true, |
| 1356 | build_by_default: true, |
| 1357 | build_always_stale: true) |
| 1358 | genh += qemu_version |
| 1359 | |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 1360 | hxdep = [] |
| 1361 | hx_headers = [ |
| 1362 | ['qemu-options.hx', 'qemu-options.def'], |
| 1363 | ['qemu-img-cmds.hx', 'qemu-img-cmds.h'], |
| 1364 | ] |
| 1365 | if have_system |
| 1366 | hx_headers += [ |
| 1367 | ['hmp-commands.hx', 'hmp-commands.h'], |
| 1368 | ['hmp-commands-info.hx', 'hmp-commands-info.h'], |
| 1369 | ] |
| 1370 | endif |
| 1371 | foreach d : hx_headers |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 1372 | hxdep += custom_target(d[1], |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 1373 | input: files(d[0]), |
| 1374 | output: d[1], |
| 1375 | capture: true, |
| 1376 | build_by_default: true, # to be removed when added to a target |
| 1377 | command: [hxtool, '-h', '@INPUT0@']) |
| 1378 | endforeach |
| 1379 | genh += hxdep |
| 1380 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1381 | ################### |
| 1382 | # Collect sources # |
| 1383 | ################### |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1384 | |
Philippe Mathieu-Daudé | 5556789 | 2020-10-06 14:56:01 +0200 | [diff] [blame] | 1385 | authz_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 1386 | blockdev_ss = ss.source_set() |
| 1387 | block_ss = ss.source_set() |
| 1388 | bsd_user_ss = ss.source_set() |
Philippe Mathieu-Daudé | c2306d7 | 2020-10-06 14:55:57 +0200 | [diff] [blame] | 1389 | chardev_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 1390 | common_ss = ss.source_set() |
Philippe Mathieu-Daudé | 2389304 | 2020-10-06 14:56:00 +0200 | [diff] [blame] | 1391 | crypto_ss = ss.source_set() |
Philippe Mathieu-Daudé | f78536b | 2020-10-06 14:55:59 +0200 | [diff] [blame] | 1392 | io_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 1393 | linux_user_ss = ss.source_set() |
| 1394 | qmp_ss = ss.source_set() |
Philippe Mathieu-Daudé | da33fc0 | 2020-10-06 14:56:02 +0200 | [diff] [blame] | 1395 | qom_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 1396 | softmmu_ss = ss.source_set() |
| 1397 | specific_fuzz_ss = ss.source_set() |
| 1398 | specific_ss = ss.source_set() |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1399 | stub_ss = ss.source_set() |
| 1400 | trace_ss = ss.source_set() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1401 | user_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 1402 | util_ss = ss.source_set() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1403 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1404 | modules = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1405 | hw_arch = {} |
| 1406 | target_arch = {} |
| 1407 | target_softmmu_arch = {} |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1408 | |
| 1409 | ############### |
| 1410 | # Trace files # |
| 1411 | ############### |
| 1412 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1413 | # TODO: add each directory to the subdirs from its own meson.build, once |
| 1414 | # we have those |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1415 | trace_events_subdirs = [ |
| 1416 | 'accel/kvm', |
| 1417 | 'accel/tcg', |
| 1418 | 'crypto', |
| 1419 | 'monitor', |
| 1420 | ] |
| 1421 | if have_user |
| 1422 | trace_events_subdirs += [ 'linux-user' ] |
| 1423 | endif |
| 1424 | if have_block |
| 1425 | trace_events_subdirs += [ |
| 1426 | 'authz', |
| 1427 | 'block', |
| 1428 | 'io', |
| 1429 | 'nbd', |
| 1430 | 'scsi', |
| 1431 | ] |
| 1432 | endif |
| 1433 | if have_system |
| 1434 | trace_events_subdirs += [ |
| 1435 | 'audio', |
| 1436 | 'backends', |
| 1437 | 'backends/tpm', |
| 1438 | 'chardev', |
| 1439 | 'hw/9pfs', |
| 1440 | 'hw/acpi', |
| 1441 | 'hw/alpha', |
| 1442 | 'hw/arm', |
| 1443 | 'hw/audio', |
| 1444 | 'hw/block', |
| 1445 | 'hw/block/dataplane', |
| 1446 | 'hw/char', |
| 1447 | 'hw/display', |
| 1448 | 'hw/dma', |
| 1449 | 'hw/hppa', |
| 1450 | 'hw/hyperv', |
| 1451 | 'hw/i2c', |
| 1452 | 'hw/i386', |
| 1453 | 'hw/i386/xen', |
| 1454 | 'hw/ide', |
| 1455 | 'hw/input', |
| 1456 | 'hw/intc', |
| 1457 | 'hw/isa', |
| 1458 | 'hw/mem', |
| 1459 | 'hw/mips', |
| 1460 | 'hw/misc', |
| 1461 | 'hw/misc/macio', |
| 1462 | 'hw/net', |
Vikram Garhwal | 98e5d7a | 2020-11-18 11:48:43 -0800 | [diff] [blame] | 1463 | 'hw/net/can', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1464 | 'hw/nvram', |
| 1465 | 'hw/pci', |
| 1466 | 'hw/pci-host', |
| 1467 | 'hw/ppc', |
| 1468 | 'hw/rdma', |
| 1469 | 'hw/rdma/vmw', |
| 1470 | 'hw/rtc', |
| 1471 | 'hw/s390x', |
| 1472 | 'hw/scsi', |
| 1473 | 'hw/sd', |
| 1474 | 'hw/sparc', |
| 1475 | 'hw/sparc64', |
| 1476 | 'hw/ssi', |
| 1477 | 'hw/timer', |
| 1478 | 'hw/tpm', |
| 1479 | 'hw/usb', |
| 1480 | 'hw/vfio', |
| 1481 | 'hw/virtio', |
| 1482 | 'hw/watchdog', |
| 1483 | 'hw/xen', |
| 1484 | 'hw/gpio', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1485 | 'migration', |
| 1486 | 'net', |
Philippe Mathieu-Daudé | 8b7a550 | 2020-08-05 15:02:20 +0200 | [diff] [blame] | 1487 | 'softmmu', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1488 | 'ui', |
| 1489 | ] |
| 1490 | endif |
| 1491 | trace_events_subdirs += [ |
| 1492 | 'hw/core', |
| 1493 | 'qapi', |
| 1494 | 'qom', |
| 1495 | 'target/arm', |
| 1496 | 'target/hppa', |
| 1497 | 'target/i386', |
| 1498 | 'target/mips', |
| 1499 | 'target/ppc', |
| 1500 | 'target/riscv', |
| 1501 | 'target/s390x', |
| 1502 | 'target/sparc', |
| 1503 | 'util', |
| 1504 | ] |
| 1505 | |
Marc-André Lureau | 0df750e | 2020-11-25 14:06:37 +0400 | [diff] [blame] | 1506 | vhost_user = not_found |
| 1507 | if 'CONFIG_VHOST_USER' in config_host |
| 1508 | libvhost_user = subproject('libvhost-user') |
| 1509 | vhost_user = libvhost_user.get_variable('vhost_user_dep') |
| 1510 | endif |
| 1511 | |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1512 | subdir('qapi') |
| 1513 | subdir('qobject') |
| 1514 | subdir('stubs') |
| 1515 | subdir('trace') |
| 1516 | subdir('util') |
Marc-André Lureau | 5582c58 | 2019-07-16 19:28:54 +0400 | [diff] [blame] | 1517 | subdir('qom') |
| 1518 | subdir('authz') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1519 | subdir('crypto') |
Marc-André Lureau | 2d78b56 | 2019-07-15 16:00:36 +0400 | [diff] [blame] | 1520 | subdir('ui') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1521 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1522 | |
| 1523 | if enable_modules |
| 1524 | libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO') |
| 1525 | modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO') |
| 1526 | endif |
| 1527 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1528 | stub_ss = stub_ss.apply(config_all, strict: false) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1529 | |
| 1530 | util_ss.add_all(trace_ss) |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1531 | util_ss = util_ss.apply(config_all, strict: false) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1532 | libqemuutil = static_library('qemuutil', |
| 1533 | sources: util_ss.sources() + stub_ss.sources() + genh, |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 1534 | dependencies: [util_ss.dependencies(), m, glib, socket, malloc]) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1535 | qemuutil = declare_dependency(link_with: libqemuutil, |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 1536 | sources: genh + version_res) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1537 | |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1538 | decodetree = generator(find_program('scripts/decodetree.py'), |
| 1539 | output: 'decode-@BASENAME@.c.inc', |
| 1540 | arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@']) |
| 1541 | |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 1542 | subdir('audio') |
Marc-André Lureau | 7fcfd45 | 2019-07-16 19:33:55 +0400 | [diff] [blame] | 1543 | subdir('io') |
Marc-André Lureau | 848e8ff | 2019-07-15 23:18:07 +0400 | [diff] [blame] | 1544 | subdir('chardev') |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 1545 | subdir('fsdev') |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1546 | subdir('libdecnumber') |
Marc-André Lureau | d3b1848 | 2019-08-17 14:55:32 +0400 | [diff] [blame] | 1547 | subdir('target') |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1548 | subdir('dump') |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 1549 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 1550 | block_ss.add(files( |
| 1551 | 'block.c', |
| 1552 | 'blockjob.c', |
| 1553 | 'job.c', |
| 1554 | 'qemu-io-cmds.c', |
| 1555 | )) |
| 1556 | block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c')) |
| 1557 | |
| 1558 | subdir('nbd') |
| 1559 | subdir('scsi') |
| 1560 | subdir('block') |
| 1561 | |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 1562 | blockdev_ss.add(files( |
| 1563 | 'blockdev.c', |
Stefan Hajnoczi | cbc20bf | 2020-09-29 13:55:15 +0100 | [diff] [blame] | 1564 | 'blockdev-nbd.c', |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 1565 | 'iothread.c', |
| 1566 | 'job-qmp.c', |
| 1567 | )) |
| 1568 | |
| 1569 | # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon, |
| 1570 | # os-win32.c does not |
| 1571 | blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c')) |
| 1572 | softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')]) |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 1573 | |
| 1574 | common_ss.add(files('cpus-common.c')) |
| 1575 | |
Paolo Bonzini | 5d3ea0e | 2020-08-06 13:40:26 +0200 | [diff] [blame] | 1576 | subdir('softmmu') |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1577 | |
Richard Henderson | f343346 | 2020-09-12 10:47:33 -0700 | [diff] [blame] | 1578 | common_ss.add(capstone) |
Paolo Bonzini | d9f24bf | 2020-10-06 09:05:29 +0200 | [diff] [blame] | 1579 | specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone) |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1580 | specific_ss.add(files('exec-vary.c')) |
| 1581 | specific_ss.add(when: 'CONFIG_TCG', if_true: files( |
| 1582 | 'fpu/softfloat.c', |
| 1583 | 'tcg/optimize.c', |
| 1584 | 'tcg/tcg-common.c', |
| 1585 | 'tcg/tcg-op-gvec.c', |
| 1586 | 'tcg/tcg-op-vec.c', |
| 1587 | 'tcg/tcg-op.c', |
| 1588 | 'tcg/tcg.c', |
| 1589 | )) |
| 1590 | specific_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('disas/tci.c', 'tcg/tci.c')) |
| 1591 | |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 1592 | subdir('backends') |
Marc-André Lureau | c574e16 | 2019-07-26 12:02:31 +0400 | [diff] [blame] | 1593 | subdir('disas') |
Marc-André Lureau | 5516623 | 2019-07-24 19:16:22 +0400 | [diff] [blame] | 1594 | subdir('migration') |
Paolo Bonzini | ff219dc | 2020-08-04 21:14:26 +0200 | [diff] [blame] | 1595 | subdir('monitor') |
Marc-André Lureau | cdaf072 | 2019-07-22 23:47:50 +0400 | [diff] [blame] | 1596 | subdir('net') |
Marc-André Lureau | 17ef2af | 2019-07-22 23:40:45 +0400 | [diff] [blame] | 1597 | subdir('replay') |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 1598 | subdir('hw') |
Marc-André Lureau | 1a82878 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1599 | subdir('accel') |
Paolo Bonzini | f556b4a | 2020-01-24 13:08:01 +0100 | [diff] [blame] | 1600 | subdir('plugins') |
Marc-André Lureau | b309c32 | 2019-08-18 19:20:37 +0400 | [diff] [blame] | 1601 | subdir('bsd-user') |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1602 | subdir('linux-user') |
| 1603 | |
Marc-André Lureau | b309c32 | 2019-08-18 19:20:37 +0400 | [diff] [blame] | 1604 | bsd_user_ss.add(files('gdbstub.c')) |
| 1605 | specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss) |
| 1606 | |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1607 | linux_user_ss.add(files('gdbstub.c', 'thunk.c')) |
| 1608 | specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss) |
Paolo Bonzini | 5d3ea0e | 2020-08-06 13:40:26 +0200 | [diff] [blame] | 1609 | |
Paolo Bonzini | a2ce7db | 2020-08-04 20:00:40 +0200 | [diff] [blame] | 1610 | # needed for fuzzing binaries |
| 1611 | subdir('tests/qtest/libqos') |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1612 | subdir('tests/qtest/fuzz') |
Paolo Bonzini | a2ce7db | 2020-08-04 20:00:40 +0200 | [diff] [blame] | 1613 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1614 | ######################## |
| 1615 | # Library dependencies # |
| 1616 | ######################## |
| 1617 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1618 | block_mods = [] |
| 1619 | softmmu_mods = [] |
| 1620 | foreach d, list : modules |
| 1621 | foreach m, module_ss : list |
| 1622 | if enable_modules and targetos != 'windows' |
Gerd Hoffmann | 3e292c5 | 2020-09-14 15:42:20 +0200 | [diff] [blame] | 1623 | module_ss = module_ss.apply(config_all, strict: false) |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1624 | sl = static_library(d + '-' + m, [genh, module_ss.sources()], |
| 1625 | dependencies: [modulecommon, module_ss.dependencies()], pic: true) |
| 1626 | if d == 'block' |
| 1627 | block_mods += sl |
| 1628 | else |
| 1629 | softmmu_mods += sl |
| 1630 | endif |
| 1631 | else |
| 1632 | if d == 'block' |
| 1633 | block_ss.add_all(module_ss) |
| 1634 | else |
| 1635 | softmmu_ss.add_all(module_ss) |
| 1636 | endif |
| 1637 | endif |
| 1638 | endforeach |
| 1639 | endforeach |
| 1640 | |
| 1641 | nm = find_program('nm') |
Yonggang Luo | 604f3e4 | 2020-09-03 01:00:50 +0800 | [diff] [blame] | 1642 | undefsym = find_program('scripts/undefsym.py') |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1643 | block_syms = custom_target('block.syms', output: 'block.syms', |
| 1644 | input: [libqemuutil, block_mods], |
| 1645 | capture: true, |
| 1646 | command: [undefsym, nm, '@INPUT@']) |
| 1647 | qemu_syms = custom_target('qemu.syms', output: 'qemu.syms', |
| 1648 | input: [libqemuutil, softmmu_mods], |
| 1649 | capture: true, |
| 1650 | command: [undefsym, nm, '@INPUT@']) |
| 1651 | |
Philippe Mathieu-Daudé | da33fc0 | 2020-10-06 14:56:02 +0200 | [diff] [blame] | 1652 | qom_ss = qom_ss.apply(config_host, strict: false) |
| 1653 | libqom = static_library('qom', qom_ss.sources() + genh, |
| 1654 | dependencies: [qom_ss.dependencies()], |
| 1655 | name_suffix: 'fa') |
| 1656 | |
| 1657 | qom = declare_dependency(link_whole: libqom) |
| 1658 | |
Philippe Mathieu-Daudé | 5556789 | 2020-10-06 14:56:01 +0200 | [diff] [blame] | 1659 | authz_ss = authz_ss.apply(config_host, strict: false) |
| 1660 | libauthz = static_library('authz', authz_ss.sources() + genh, |
| 1661 | dependencies: [authz_ss.dependencies()], |
| 1662 | name_suffix: 'fa', |
| 1663 | build_by_default: false) |
| 1664 | |
| 1665 | authz = declare_dependency(link_whole: libauthz, |
| 1666 | dependencies: qom) |
| 1667 | |
Philippe Mathieu-Daudé | 2389304 | 2020-10-06 14:56:00 +0200 | [diff] [blame] | 1668 | crypto_ss = crypto_ss.apply(config_host, strict: false) |
| 1669 | libcrypto = static_library('crypto', crypto_ss.sources() + genh, |
| 1670 | dependencies: [crypto_ss.dependencies()], |
| 1671 | name_suffix: 'fa', |
| 1672 | build_by_default: false) |
| 1673 | |
| 1674 | crypto = declare_dependency(link_whole: libcrypto, |
| 1675 | dependencies: [authz, qom]) |
| 1676 | |
Philippe Mathieu-Daudé | f78536b | 2020-10-06 14:55:59 +0200 | [diff] [blame] | 1677 | io_ss = io_ss.apply(config_host, strict: false) |
| 1678 | libio = static_library('io', io_ss.sources() + genh, |
| 1679 | dependencies: [io_ss.dependencies()], |
| 1680 | link_with: libqemuutil, |
| 1681 | name_suffix: 'fa', |
| 1682 | build_by_default: false) |
| 1683 | |
| 1684 | io = declare_dependency(link_whole: libio, dependencies: [crypto, qom]) |
| 1685 | |
Philippe Mathieu-Daudé | 7e6edef | 2020-10-06 14:55:58 +0200 | [diff] [blame] | 1686 | libmigration = static_library('migration', sources: migration_files + genh, |
| 1687 | name_suffix: 'fa', |
| 1688 | build_by_default: false) |
| 1689 | migration = declare_dependency(link_with: libmigration, |
| 1690 | dependencies: [zlib, qom, io]) |
| 1691 | softmmu_ss.add(migration) |
| 1692 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 1693 | block_ss = block_ss.apply(config_host, strict: false) |
| 1694 | libblock = static_library('block', block_ss.sources() + genh, |
| 1695 | dependencies: block_ss.dependencies(), |
| 1696 | link_depends: block_syms, |
| 1697 | name_suffix: 'fa', |
| 1698 | build_by_default: false) |
| 1699 | |
| 1700 | block = declare_dependency(link_whole: [libblock], |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 1701 | link_args: '@block.syms', |
| 1702 | dependencies: [crypto, io]) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 1703 | |
Stefan Hajnoczi | 4fb9071 | 2020-09-29 13:55:14 +0100 | [diff] [blame] | 1704 | blockdev_ss = blockdev_ss.apply(config_host, strict: false) |
| 1705 | libblockdev = static_library('blockdev', blockdev_ss.sources() + genh, |
| 1706 | dependencies: blockdev_ss.dependencies(), |
| 1707 | name_suffix: 'fa', |
| 1708 | build_by_default: false) |
| 1709 | |
| 1710 | blockdev = declare_dependency(link_whole: [libblockdev], |
| 1711 | dependencies: [block]) |
| 1712 | |
Paolo Bonzini | ff219dc | 2020-08-04 21:14:26 +0200 | [diff] [blame] | 1713 | qmp_ss = qmp_ss.apply(config_host, strict: false) |
| 1714 | libqmp = static_library('qmp', qmp_ss.sources() + genh, |
| 1715 | dependencies: qmp_ss.dependencies(), |
| 1716 | name_suffix: 'fa', |
| 1717 | build_by_default: false) |
| 1718 | |
| 1719 | qmp = declare_dependency(link_whole: [libqmp]) |
| 1720 | |
Philippe Mathieu-Daudé | c2306d7 | 2020-10-06 14:55:57 +0200 | [diff] [blame] | 1721 | libchardev = static_library('chardev', chardev_ss.sources() + genh, |
| 1722 | name_suffix: 'fa', |
| 1723 | build_by_default: false) |
| 1724 | |
| 1725 | chardev = declare_dependency(link_whole: libchardev) |
| 1726 | |
Philippe Mathieu-Daudé | e28ab09 | 2020-10-06 14:55:56 +0200 | [diff] [blame] | 1727 | libhwcore = static_library('hwcore', sources: hwcore_files + genh, |
| 1728 | name_suffix: 'fa', |
| 1729 | build_by_default: false) |
| 1730 | hwcore = declare_dependency(link_whole: libhwcore) |
| 1731 | common_ss.add(hwcore) |
| 1732 | |
Philippe Mathieu-Daudé | 064f8ee | 2020-10-06 14:55:54 +0200 | [diff] [blame] | 1733 | ########### |
| 1734 | # Targets # |
| 1735 | ########### |
| 1736 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1737 | foreach m : block_mods + softmmu_mods |
| 1738 | shared_module(m.name(), |
| 1739 | name_prefix: '', |
| 1740 | link_whole: m, |
| 1741 | install: true, |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 1742 | install_dir: qemu_moddir) |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 1743 | endforeach |
| 1744 | |
Stefan Hajnoczi | 4fb9071 | 2020-09-29 13:55:14 +0100 | [diff] [blame] | 1745 | softmmu_ss.add(authz, blockdev, chardev, crypto, io, qmp) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1746 | common_ss.add(qom, qemuutil) |
| 1747 | |
| 1748 | common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss]) |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1749 | common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss) |
| 1750 | |
| 1751 | common_all = common_ss.apply(config_all, strict: false) |
| 1752 | common_all = static_library('common', |
| 1753 | build_by_default: false, |
| 1754 | sources: common_all.sources() + genh, |
| 1755 | dependencies: common_all.dependencies(), |
| 1756 | name_suffix: 'fa') |
| 1757 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1758 | feature_to_c = find_program('scripts/feature_to_c.sh') |
| 1759 | |
Paolo Bonzini | fd5eef8 | 2020-09-16 05:00:53 -0400 | [diff] [blame] | 1760 | emulators = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1761 | foreach target : target_dirs |
| 1762 | config_target = config_target_mak[target] |
| 1763 | target_name = config_target['TARGET_NAME'] |
| 1764 | arch = config_target['TARGET_BASE_ARCH'] |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1765 | arch_srcs = [config_target_h[target]] |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1766 | arch_deps = [] |
| 1767 | c_args = ['-DNEED_CPU_H', |
| 1768 | '-DCONFIG_TARGET="@0@-config-target.h"'.format(target), |
| 1769 | '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 1770 | link_args = emulator_link_args |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1771 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1772 | config_target += config_host |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1773 | target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])] |
| 1774 | if targetos == 'linux' |
| 1775 | target_inc += include_directories('linux-headers', is_system: true) |
| 1776 | endif |
| 1777 | if target.endswith('-softmmu') |
| 1778 | qemu_target_name = 'qemu-system-' + target_name |
| 1779 | target_type='system' |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1780 | t = target_softmmu_arch[arch].apply(config_target, strict: false) |
| 1781 | arch_srcs += t.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1782 | arch_deps += t.dependencies() |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1783 | |
Marc-André Lureau | 2c44220 | 2019-08-17 13:55:58 +0400 | [diff] [blame] | 1784 | hw_dir = target_name == 'sparc64' ? 'sparc64' : arch |
| 1785 | hw = hw_arch[hw_dir].apply(config_target, strict: false) |
| 1786 | arch_srcs += hw.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1787 | arch_deps += hw.dependencies() |
Marc-André Lureau | 2c44220 | 2019-08-17 13:55:58 +0400 | [diff] [blame] | 1788 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1789 | arch_srcs += config_devices_h[target] |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1790 | link_args += ['@block.syms', '@qemu.syms'] |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1791 | else |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1792 | abi = config_target['TARGET_ABI_DIR'] |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1793 | target_type='user' |
| 1794 | qemu_target_name = 'qemu-' + target_name |
| 1795 | if 'CONFIG_LINUX_USER' in config_target |
| 1796 | base_dir = 'linux-user' |
| 1797 | target_inc += include_directories('linux-user/host/' / config_host['ARCH']) |
| 1798 | else |
| 1799 | base_dir = 'bsd-user' |
| 1800 | endif |
| 1801 | target_inc += include_directories( |
| 1802 | base_dir, |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1803 | base_dir / abi, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1804 | ) |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 1805 | if 'CONFIG_LINUX_USER' in config_target |
| 1806 | dir = base_dir / abi |
| 1807 | arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c') |
| 1808 | if config_target.has_key('TARGET_SYSTBL_ABI') |
| 1809 | arch_srcs += \ |
| 1810 | syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'], |
| 1811 | extra_args : config_target['TARGET_SYSTBL_ABI']) |
| 1812 | endif |
| 1813 | endif |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1814 | endif |
| 1815 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1816 | if 'TARGET_XML_FILES' in config_target |
| 1817 | gdbstub_xml = custom_target(target + '-gdbstub-xml.c', |
| 1818 | output: target + '-gdbstub-xml.c', |
| 1819 | input: files(config_target['TARGET_XML_FILES'].split()), |
| 1820 | command: [feature_to_c, '@INPUT@'], |
| 1821 | capture: true) |
| 1822 | arch_srcs += gdbstub_xml |
| 1823 | endif |
| 1824 | |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1825 | t = target_arch[arch].apply(config_target, strict: false) |
| 1826 | arch_srcs += t.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1827 | arch_deps += t.dependencies() |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 1828 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1829 | target_common = common_ss.apply(config_target, strict: false) |
| 1830 | objects = common_all.extract_objects(target_common.sources()) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1831 | deps = target_common.dependencies() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1832 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1833 | target_specific = specific_ss.apply(config_target, strict: false) |
| 1834 | arch_srcs += target_specific.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1835 | arch_deps += target_specific.dependencies() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1836 | |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1837 | lib = static_library('qemu-' + target, |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1838 | sources: arch_srcs + genh, |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 1839 | dependencies: arch_deps, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1840 | objects: objects, |
| 1841 | include_directories: target_inc, |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1842 | c_args: c_args, |
| 1843 | build_by_default: false, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1844 | name_suffix: 'fa') |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1845 | |
| 1846 | if target.endswith('-softmmu') |
| 1847 | execs = [{ |
| 1848 | 'name': 'qemu-system-' + target_name, |
| 1849 | 'gui': false, |
| 1850 | 'sources': files('softmmu/main.c'), |
| 1851 | 'dependencies': [] |
| 1852 | }] |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 1853 | if targetos == 'windows' and (sdl.found() or gtk.found()) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1854 | execs += [{ |
| 1855 | 'name': 'qemu-system-' + target_name + 'w', |
| 1856 | 'gui': true, |
| 1857 | 'sources': files('softmmu/main.c'), |
| 1858 | 'dependencies': [] |
| 1859 | }] |
| 1860 | endif |
| 1861 | if config_host.has_key('CONFIG_FUZZ') |
| 1862 | specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false) |
| 1863 | execs += [{ |
| 1864 | 'name': 'qemu-fuzz-' + target_name, |
| 1865 | 'gui': false, |
| 1866 | 'sources': specific_fuzz.sources(), |
| 1867 | 'dependencies': specific_fuzz.dependencies(), |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1868 | }] |
| 1869 | endif |
| 1870 | else |
| 1871 | execs = [{ |
| 1872 | 'name': 'qemu-' + target_name, |
| 1873 | 'gui': false, |
| 1874 | 'sources': [], |
| 1875 | 'dependencies': [] |
| 1876 | }] |
| 1877 | endif |
| 1878 | foreach exe: execs |
Paolo Bonzini | fd5eef8 | 2020-09-16 05:00:53 -0400 | [diff] [blame] | 1879 | emulators += {exe['name']: |
| 1880 | executable(exe['name'], exe['sources'], |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1881 | install: true, |
| 1882 | c_args: c_args, |
| 1883 | dependencies: arch_deps + deps + exe['dependencies'], |
| 1884 | objects: lib.extract_all_objects(recursive: true), |
| 1885 | link_language: link_language, |
| 1886 | link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []), |
| 1887 | link_args: link_args, |
| 1888 | gui_app: exe['gui']) |
Paolo Bonzini | fd5eef8 | 2020-09-16 05:00:53 -0400 | [diff] [blame] | 1889 | } |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 1890 | |
| 1891 | if 'CONFIG_TRACE_SYSTEMTAP' in config_host |
| 1892 | foreach stp: [ |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 1893 | {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false}, |
| 1894 | {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / exe['name'], 'install': true}, |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 1895 | {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true}, |
| 1896 | {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true}, |
| 1897 | ] |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 1898 | custom_target(exe['name'] + stp['ext'], |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 1899 | input: trace_events_all, |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 1900 | output: exe['name'] + stp['ext'], |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 1901 | capture: true, |
| 1902 | install: stp['install'], |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 1903 | install_dir: get_option('datadir') / 'systemtap/tapset', |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 1904 | command: [ |
| 1905 | tracetool, '--group=all', '--format=' + stp['fmt'], |
| 1906 | '--binary=' + stp['bin'], |
| 1907 | '--target-name=' + target_name, |
| 1908 | '--target-type=' + target_type, |
| 1909 | '--probe-prefix=qemu.' + target_type + '.' + target_name, |
| 1910 | '@INPUT@', |
| 1911 | ]) |
| 1912 | endforeach |
| 1913 | endif |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 1914 | endforeach |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1915 | endforeach |
| 1916 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 1917 | # Other build targets |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 1918 | |
Paolo Bonzini | f556b4a | 2020-01-24 13:08:01 +0100 | [diff] [blame] | 1919 | if 'CONFIG_PLUGIN' in config_host |
| 1920 | install_headers('include/qemu/qemu-plugin.h') |
| 1921 | endif |
| 1922 | |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 1923 | if 'CONFIG_GUEST_AGENT' in config_host |
| 1924 | subdir('qga') |
| 1925 | endif |
| 1926 | |
Laurent Vivier | 9755c94 | 2020-08-24 17:24:30 +0200 | [diff] [blame] | 1927 | # Don't build qemu-keymap if xkbcommon is not explicitly enabled |
| 1928 | # when we don't build tools or system |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 1929 | if xkbcommon.found() |
Marc-André Lureau | 2874246 | 2019-09-19 20:24:43 +0400 | [diff] [blame] | 1930 | # used for the update-keymaps target, so include rules even if !have_tools |
| 1931 | qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh, |
| 1932 | dependencies: [qemuutil, xkbcommon], install: have_tools) |
| 1933 | endif |
| 1934 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 1935 | if have_tools |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 1936 | qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep], |
| 1937 | dependencies: [authz, block, crypto, io, qom, qemuutil], install: true) |
| 1938 | qemu_io = executable('qemu-io', files('qemu-io.c'), |
| 1939 | dependencies: [block, qemuutil], install: true) |
Daniel P. Berrangé | eb70598 | 2020-08-25 11:38:50 +0100 | [diff] [blame] | 1940 | qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'), |
Stefan Hajnoczi | cbc20bf | 2020-09-29 13:55:15 +0100 | [diff] [blame] | 1941 | dependencies: [blockdev, qemuutil], install: true) |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 1942 | |
Paolo Bonzini | 7c58bb7 | 2020-08-04 20:18:36 +0200 | [diff] [blame] | 1943 | subdir('storage-daemon') |
Paolo Bonzini | a9c9727 | 2019-06-10 12:27:52 +0200 | [diff] [blame] | 1944 | subdir('contrib/rdmacm-mux') |
Marc-André Lureau | 1d7bb6a | 2019-07-12 23:47:06 +0400 | [diff] [blame] | 1945 | subdir('contrib/elf2dmp') |
Paolo Bonzini | a9c9727 | 2019-06-10 12:27:52 +0200 | [diff] [blame] | 1946 | |
Marc-André Lureau | 157e7b1 | 2019-07-15 14:50:58 +0400 | [diff] [blame] | 1947 | executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'), |
| 1948 | dependencies: qemuutil, |
| 1949 | install: true) |
| 1950 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 1951 | if 'CONFIG_VHOST_USER' in config_host |
Paolo Bonzini | 2d7ac0a | 2019-06-10 12:18:02 +0200 | [diff] [blame] | 1952 | subdir('contrib/vhost-user-blk') |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 1953 | subdir('contrib/vhost-user-gpu') |
Marc-André Lureau | 32fcc62 | 2019-07-12 22:11:20 +0400 | [diff] [blame] | 1954 | subdir('contrib/vhost-user-input') |
Paolo Bonzini | 99650b6 | 2019-06-10 12:21:14 +0200 | [diff] [blame] | 1955 | subdir('contrib/vhost-user-scsi') |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 1956 | endif |
Marc-André Lureau | 8f51e01 | 2019-07-15 14:39:25 +0400 | [diff] [blame] | 1957 | |
| 1958 | if targetos == 'linux' |
| 1959 | executable('qemu-bridge-helper', files('qemu-bridge-helper.c'), |
| 1960 | dependencies: [qemuutil, libcap_ng], |
| 1961 | install: true, |
| 1962 | install_dir: get_option('libexecdir')) |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 1963 | |
| 1964 | executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'), |
| 1965 | dependencies: [authz, crypto, io, qom, qemuutil, |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 1966 | libcap_ng, mpathpersist], |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 1967 | install: true) |
Marc-André Lureau | 8f51e01 | 2019-07-15 14:39:25 +0400 | [diff] [blame] | 1968 | endif |
| 1969 | |
Marc-André Lureau | 5ee24e7 | 2019-07-12 23:16:54 +0400 | [diff] [blame] | 1970 | if 'CONFIG_IVSHMEM' in config_host |
| 1971 | subdir('contrib/ivshmem-client') |
| 1972 | subdir('contrib/ivshmem-server') |
| 1973 | endif |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 1974 | endif |
| 1975 | |
Marc-André Lureau | f5aa632 | 2020-08-26 17:06:18 +0400 | [diff] [blame] | 1976 | subdir('scripts') |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 1977 | subdir('tools') |
Marc-André Lureau | bdcbea7 | 2019-07-15 21:22:31 +0400 | [diff] [blame] | 1978 | subdir('pc-bios') |
Paolo Bonzini | f8aa24e | 2020-08-05 15:49:10 +0200 | [diff] [blame] | 1979 | subdir('docs') |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 1980 | subdir('tests') |
Marc-André Lureau | e8f3bd7 | 2019-09-19 21:02:09 +0400 | [diff] [blame] | 1981 | if 'CONFIG_GTK' in config_host |
| 1982 | subdir('po') |
| 1983 | endif |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 1984 | |
Marc-André Lureau | 8adfeba | 2020-08-26 15:04:19 +0400 | [diff] [blame] | 1985 | if host_machine.system() == 'windows' |
| 1986 | nsis_cmd = [ |
| 1987 | find_program('scripts/nsis.py'), |
| 1988 | '@OUTPUT@', |
| 1989 | get_option('prefix'), |
| 1990 | meson.current_source_dir(), |
Stefan Weil | 24bdcc9 | 2020-11-25 20:18:33 +0100 | [diff] [blame] | 1991 | host_machine.cpu(), |
Marc-André Lureau | 8adfeba | 2020-08-26 15:04:19 +0400 | [diff] [blame] | 1992 | '--', |
| 1993 | '-DDISPLAYVERSION=' + meson.project_version(), |
| 1994 | ] |
| 1995 | if build_docs |
| 1996 | nsis_cmd += '-DCONFIG_DOCUMENTATION=y' |
| 1997 | endif |
| 1998 | if 'CONFIG_GTK' in config_host |
| 1999 | nsis_cmd += '-DCONFIG_GTK=y' |
| 2000 | endif |
| 2001 | |
| 2002 | nsis = custom_target('nsis', |
| 2003 | output: 'qemu-setup-' + meson.project_version() + '.exe', |
| 2004 | input: files('qemu.nsi'), |
| 2005 | build_always_stale: true, |
| 2006 | command: nsis_cmd + ['@INPUT@']) |
| 2007 | alias_target('installer', nsis) |
| 2008 | endif |
| 2009 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 2010 | ######################### |
| 2011 | # Configuration summary # |
| 2012 | ######################### |
| 2013 | |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2014 | summary_info = {} |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 2015 | summary_info += {'Install prefix': get_option('prefix')} |
| 2016 | summary_info += {'BIOS directory': qemu_datadir} |
| 2017 | summary_info += {'firmware path': get_option('qemu_firmwarepath')} |
| 2018 | summary_info += {'binary directory': get_option('bindir')} |
| 2019 | summary_info += {'library directory': get_option('libdir')} |
| 2020 | summary_info += {'module directory': qemu_moddir} |
| 2021 | summary_info += {'libexec directory': get_option('libexecdir')} |
| 2022 | summary_info += {'include directory': get_option('includedir')} |
| 2023 | summary_info += {'config directory': get_option('sysconfdir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2024 | if targetos != 'windows' |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 2025 | summary_info += {'local state directory': get_option('localstatedir')} |
Marc-André Lureau | b81efab | 2020-08-26 15:04:18 +0400 | [diff] [blame] | 2026 | summary_info += {'Manual directory': get_option('mandir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2027 | else |
| 2028 | summary_info += {'local state directory': 'queried at runtime'} |
| 2029 | endif |
Marc-André Lureau | 491e74c | 2020-08-26 15:04:17 +0400 | [diff] [blame] | 2030 | summary_info += {'Doc directory': get_option('docdir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2031 | summary_info += {'Build directory': meson.current_build_dir()} |
| 2032 | summary_info += {'Source path': meson.current_source_dir()} |
| 2033 | summary_info += {'GIT binary': config_host['GIT']} |
| 2034 | summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']} |
| 2035 | summary_info += {'C compiler': meson.get_compiler('c').cmd_array()[0]} |
| 2036 | summary_info += {'Host C compiler': meson.get_compiler('c', native: true).cmd_array()[0]} |
| 2037 | if link_language == 'cpp' |
| 2038 | summary_info += {'C++ compiler': meson.get_compiler('cpp').cmd_array()[0]} |
| 2039 | else |
| 2040 | summary_info += {'C++ compiler': false} |
| 2041 | endif |
| 2042 | if targetos == 'darwin' |
| 2043 | summary_info += {'Objective-C compiler': meson.get_compiler('objc').cmd_array()[0]} |
| 2044 | endif |
| 2045 | summary_info += {'ARFLAGS': config_host['ARFLAGS']} |
Paolo Bonzini | 47b3083 | 2020-09-23 05:26:17 -0400 | [diff] [blame] | 2046 | summary_info += {'CFLAGS': ' '.join(get_option('c_args') |
| 2047 | + ['-O' + get_option('optimization')] |
| 2048 | + (get_option('debug') ? ['-g'] : []))} |
| 2049 | if link_language == 'cpp' |
| 2050 | summary_info += {'CXXFLAGS': ' '.join(get_option('cpp_args') |
| 2051 | + ['-O' + get_option('optimization')] |
| 2052 | + (get_option('debug') ? ['-g'] : []))} |
| 2053 | endif |
| 2054 | link_args = get_option(link_language + '_link_args') |
| 2055 | if link_args.length() > 0 |
| 2056 | summary_info += {'LDFLAGS': ' '.join(link_args)} |
| 2057 | endif |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2058 | summary_info += {'QEMU_CFLAGS': config_host['QEMU_CFLAGS']} |
| 2059 | summary_info += {'QEMU_LDFLAGS': config_host['QEMU_LDFLAGS']} |
| 2060 | summary_info += {'make': config_host['MAKE']} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2061 | summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())} |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 2062 | summary_info += {'sphinx-build': sphinx_build.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2063 | summary_info += {'genisoimage': config_host['GENISOIMAGE']} |
| 2064 | # TODO: add back version |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2065 | summary_info += {'slirp support': slirp_opt == 'disabled' ? false : slirp_opt} |
| 2066 | if slirp_opt != 'disabled' |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2067 | summary_info += {'smbd': config_host['CONFIG_SMBD_COMMAND']} |
| 2068 | endif |
| 2069 | summary_info += {'module support': config_host.has_key('CONFIG_MODULES')} |
| 2070 | if config_host.has_key('CONFIG_MODULES') |
| 2071 | summary_info += {'alternative module path': config_host.has_key('CONFIG_MODULE_UPGRADES')} |
| 2072 | endif |
| 2073 | summary_info += {'host CPU': cpu} |
| 2074 | summary_info += {'host endianness': build_machine.endian()} |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2075 | summary_info += {'target list': ' '.join(target_dirs)} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2076 | summary_info += {'gprof enabled': config_host.has_key('CONFIG_GPROF')} |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 2077 | summary_info += {'sparse enabled': sparse.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2078 | summary_info += {'strip binaries': get_option('strip')} |
| 2079 | summary_info += {'profiler': config_host.has_key('CONFIG_PROFILER')} |
Laurent Vivier | 3e8529d | 2020-09-17 16:07:00 +0200 | [diff] [blame] | 2080 | summary_info += {'static build': config_host.has_key('CONFIG_STATIC')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2081 | if targetos == 'darwin' |
| 2082 | summary_info += {'Cocoa support': config_host.has_key('CONFIG_COCOA')} |
| 2083 | endif |
| 2084 | # TODO: add back version |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 2085 | summary_info += {'SDL support': sdl.found()} |
| 2086 | summary_info += {'SDL image support': sdl_image.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2087 | # TODO: add back version |
| 2088 | summary_info += {'GTK support': config_host.has_key('CONFIG_GTK')} |
| 2089 | summary_info += {'GTK GL support': config_host.has_key('CONFIG_GTK_GL')} |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 2090 | summary_info += {'pixman': pixman.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2091 | # TODO: add back version |
| 2092 | summary_info += {'VTE support': config_host.has_key('CONFIG_VTE')} |
| 2093 | summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']} |
| 2094 | summary_info += {'GNUTLS support': config_host.has_key('CONFIG_GNUTLS')} |
| 2095 | # TODO: add back version |
| 2096 | summary_info += {'libgcrypt': config_host.has_key('CONFIG_GCRYPT')} |
| 2097 | if config_host.has_key('CONFIG_GCRYPT') |
| 2098 | summary_info += {' hmac': config_host.has_key('CONFIG_GCRYPT_HMAC')} |
| 2099 | summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')} |
| 2100 | endif |
| 2101 | # TODO: add back version |
| 2102 | summary_info += {'nettle': config_host.has_key('CONFIG_NETTLE')} |
| 2103 | if config_host.has_key('CONFIG_NETTLE') |
| 2104 | summary_info += {' XTS': not config_host.has_key('CONFIG_QEMU_PRIVATE_XTS')} |
| 2105 | endif |
| 2106 | summary_info += {'libtasn1': config_host.has_key('CONFIG_TASN1')} |
| 2107 | summary_info += {'PAM': config_host.has_key('CONFIG_AUTH_PAM')} |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 2108 | summary_info += {'iconv support': iconv.found()} |
| 2109 | summary_info += {'curses support': curses.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2110 | # TODO: add back version |
| 2111 | summary_info += {'virgl support': config_host.has_key('CONFIG_VIRGL')} |
| 2112 | summary_info += {'curl support': config_host.has_key('CONFIG_CURL')} |
| 2113 | summary_info += {'mingw32 support': targetos == 'windows'} |
| 2114 | summary_info += {'Audio drivers': config_host['CONFIG_AUDIO_DRIVERS']} |
| 2115 | summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']} |
| 2116 | summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']} |
| 2117 | summary_info += {'VirtFS support': config_host.has_key('CONFIG_VIRTFS')} |
Misono Tomohiro | cece116 | 2020-10-08 19:31:33 +0900 | [diff] [blame] | 2118 | summary_info += {'build virtiofs daemon': have_virtiofsd} |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 2119 | summary_info += {'Multipath support': mpathpersist.found()} |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 2120 | summary_info += {'VNC support': vnc.found()} |
| 2121 | if vnc.found() |
| 2122 | summary_info += {'VNC SASL support': sasl.found()} |
| 2123 | summary_info += {'VNC JPEG support': jpeg.found()} |
| 2124 | summary_info += {'VNC PNG support': png.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2125 | endif |
| 2126 | summary_info += {'xen support': config_host.has_key('CONFIG_XEN_BACKEND')} |
| 2127 | if config_host.has_key('CONFIG_XEN_BACKEND') |
| 2128 | summary_info += {'xen ctrl version': config_host['CONFIG_XEN_CTRL_INTERFACE_VERSION']} |
| 2129 | endif |
| 2130 | summary_info += {'brlapi support': config_host.has_key('CONFIG_BRLAPI')} |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 2131 | summary_info += {'Documentation': build_docs} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2132 | summary_info += {'PIE': get_option('b_pie')} |
| 2133 | summary_info += {'vde support': config_host.has_key('CONFIG_VDE')} |
| 2134 | summary_info += {'netmap support': config_host.has_key('CONFIG_NETMAP')} |
| 2135 | summary_info += {'Linux AIO support': config_host.has_key('CONFIG_LINUX_AIO')} |
| 2136 | summary_info += {'Linux io_uring support': config_host.has_key('CONFIG_LINUX_IO_URING')} |
| 2137 | summary_info += {'ATTR/XATTR support': config_host.has_key('CONFIG_ATTR')} |
Paolo Bonzini | c8d5450 | 2020-10-16 03:32:52 -0400 | [diff] [blame] | 2138 | summary_info += {'Install blobs': get_option('install_blobs')} |
Paolo Bonzini | 05512f5 | 2020-09-16 15:31:11 -0400 | [diff] [blame] | 2139 | summary_info += {'KVM support': config_all.has_key('CONFIG_KVM')} |
| 2140 | summary_info += {'HAX support': config_all.has_key('CONFIG_HAX')} |
| 2141 | summary_info += {'HVF support': config_all.has_key('CONFIG_HVF')} |
| 2142 | summary_info += {'WHPX support': config_all.has_key('CONFIG_WHPX')} |
| 2143 | summary_info += {'TCG support': config_all.has_key('CONFIG_TCG')} |
| 2144 | if config_all.has_key('CONFIG_TCG') |
| 2145 | summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')} |
| 2146 | summary_info += {'TCG interpreter': config_host.has_key('CONFIG_TCG_INTERPRETER')} |
| 2147 | endif |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 2148 | summary_info += {'malloc trim support': has_malloc_trim} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2149 | summary_info += {'RDMA support': config_host.has_key('CONFIG_RDMA')} |
| 2150 | summary_info += {'PVRDMA support': config_host.has_key('CONFIG_PVRDMA')} |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2151 | summary_info += {'fdt support': fdt_opt == 'disabled' ? false : fdt_opt} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2152 | summary_info += {'membarrier': config_host.has_key('CONFIG_MEMBARRIER')} |
| 2153 | summary_info += {'preadv support': config_host.has_key('CONFIG_PREADV')} |
| 2154 | summary_info += {'fdatasync': config_host.has_key('CONFIG_FDATASYNC')} |
| 2155 | summary_info += {'madvise': config_host.has_key('CONFIG_MADVISE')} |
| 2156 | summary_info += {'posix_madvise': config_host.has_key('CONFIG_POSIX_MADVISE')} |
| 2157 | summary_info += {'posix_memalign': config_host.has_key('CONFIG_POSIX_MEMALIGN')} |
| 2158 | summary_info += {'libcap-ng support': config_host.has_key('CONFIG_LIBCAP_NG')} |
Thomas Huth | b54b82d | 2020-11-09 09:59:06 +0100 | [diff] [blame] | 2159 | summary_info += {'vhost-kernel support': config_host.has_key('CONFIG_VHOST_KERNEL')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2160 | summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')} |
| 2161 | summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')} |
| 2162 | summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')} |
| 2163 | summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')} |
Thomas Huth | b54b82d | 2020-11-09 09:59:06 +0100 | [diff] [blame] | 2164 | summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_USER')} |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 2165 | summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2166 | summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')} |
| 2167 | summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')} |
| 2168 | summary_info += {'Trace backends': config_host['TRACE_BACKENDS']} |
| 2169 | if config_host['TRACE_BACKENDS'].split().contains('simple') |
| 2170 | summary_info += {'Trace output file': config_host['CONFIG_TRACE_FILE'] + '-<pid>'} |
| 2171 | endif |
| 2172 | # TODO: add back protocol and server version |
| 2173 | summary_info += {'spice support': config_host.has_key('CONFIG_SPICE')} |
| 2174 | summary_info += {'rbd support': config_host.has_key('CONFIG_RBD')} |
| 2175 | summary_info += {'xfsctl support': config_host.has_key('CONFIG_XFS')} |
| 2176 | summary_info += {'smartcard support': config_host.has_key('CONFIG_SMARTCARD')} |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 2177 | summary_info += {'U2F support': u2f.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2178 | summary_info += {'libusb': config_host.has_key('CONFIG_USB_LIBUSB')} |
| 2179 | summary_info += {'usb net redir': config_host.has_key('CONFIG_USB_REDIR')} |
| 2180 | summary_info += {'OpenGL support': config_host.has_key('CONFIG_OPENGL')} |
| 2181 | summary_info += {'OpenGL dmabufs': config_host.has_key('CONFIG_OPENGL_DMABUF')} |
| 2182 | summary_info += {'libiscsi support': config_host.has_key('CONFIG_LIBISCSI')} |
| 2183 | summary_info += {'libnfs support': config_host.has_key('CONFIG_LIBNFS')} |
| 2184 | summary_info += {'build guest agent': config_host.has_key('CONFIG_GUEST_AGENT')} |
| 2185 | if targetos == 'windows' |
| 2186 | if 'WIN_SDK' in config_host |
| 2187 | summary_info += {'Windows SDK': config_host['WIN_SDK']} |
| 2188 | endif |
| 2189 | summary_info += {'QGA VSS support': config_host.has_key('CONFIG_QGA_VSS')} |
| 2190 | summary_info += {'QGA w32 disk info': config_host.has_key('CONFIG_QGA_NTDDSCSI')} |
Stefan Hajnoczi | 4bad7c3 | 2020-09-14 10:52:31 +0100 | [diff] [blame] | 2191 | summary_info += {'QGA MSI support': config_host.has_key('CONFIG_QGA_MSI')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2192 | endif |
| 2193 | summary_info += {'seccomp support': config_host.has_key('CONFIG_SECCOMP')} |
| 2194 | summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']} |
| 2195 | summary_info += {'coroutine pool': config_host['CONFIG_COROUTINE_POOL'] == '1'} |
| 2196 | summary_info += {'debug stack usage': config_host.has_key('CONFIG_DEBUG_STACK_USAGE')} |
| 2197 | summary_info += {'mutex debugging': config_host.has_key('CONFIG_DEBUG_MUTEX')} |
| 2198 | summary_info += {'crypto afalg': config_host.has_key('CONFIG_AF_ALG')} |
| 2199 | summary_info += {'GlusterFS support': config_host.has_key('CONFIG_GLUSTERFS')} |
Marc-André Lureau | bf0e56a | 2019-10-04 17:35:16 +0400 | [diff] [blame] | 2200 | summary_info += {'gcov': get_option('b_coverage')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2201 | summary_info += {'TPM support': config_host.has_key('CONFIG_TPM')} |
| 2202 | summary_info += {'libssh support': config_host.has_key('CONFIG_LIBSSH')} |
| 2203 | summary_info += {'QOM debugging': config_host.has_key('CONFIG_QOM_CAST_DEBUG')} |
| 2204 | summary_info += {'Live block migration': config_host.has_key('CONFIG_LIVE_BLOCK_MIGRATION')} |
| 2205 | summary_info += {'lzo support': config_host.has_key('CONFIG_LZO')} |
| 2206 | summary_info += {'snappy support': config_host.has_key('CONFIG_SNAPPY')} |
| 2207 | summary_info += {'bzip2 support': config_host.has_key('CONFIG_BZIP2')} |
| 2208 | summary_info += {'lzfse support': config_host.has_key('CONFIG_LZFSE')} |
| 2209 | summary_info += {'zstd support': config_host.has_key('CONFIG_ZSTD')} |
| 2210 | summary_info += {'NUMA host support': config_host.has_key('CONFIG_NUMA')} |
| 2211 | summary_info += {'libxml2': config_host.has_key('CONFIG_LIBXML2')} |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 2212 | summary_info += {'memory allocator': get_option('malloc')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2213 | summary_info += {'avx2 optimization': config_host.has_key('CONFIG_AVX2_OPT')} |
| 2214 | summary_info += {'avx512f optimization': config_host.has_key('CONFIG_AVX512F_OPT')} |
| 2215 | summary_info += {'replication support': config_host.has_key('CONFIG_REPLICATION')} |
| 2216 | summary_info += {'bochs support': config_host.has_key('CONFIG_BOCHS')} |
| 2217 | summary_info += {'cloop support': config_host.has_key('CONFIG_CLOOP')} |
| 2218 | summary_info += {'dmg support': config_host.has_key('CONFIG_DMG')} |
| 2219 | summary_info += {'qcow v1 support': config_host.has_key('CONFIG_QCOW1')} |
| 2220 | summary_info += {'vdi support': config_host.has_key('CONFIG_VDI')} |
| 2221 | summary_info += {'vvfat support': config_host.has_key('CONFIG_VVFAT')} |
| 2222 | summary_info += {'qed support': config_host.has_key('CONFIG_QED')} |
| 2223 | summary_info += {'parallels support': config_host.has_key('CONFIG_PARALLELS')} |
| 2224 | summary_info += {'sheepdog support': config_host.has_key('CONFIG_SHEEPDOG')} |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2225 | summary_info += {'capstone': capstone_opt == 'disabled' ? false : capstone_opt} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2226 | summary_info += {'libpmem support': config_host.has_key('CONFIG_LIBPMEM')} |
| 2227 | summary_info += {'libdaxctl support': config_host.has_key('CONFIG_LIBDAXCTL')} |
Paolo Bonzini | f01496a | 2020-09-16 17:54:14 +0200 | [diff] [blame] | 2228 | summary_info += {'libudev': libudev.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2229 | summary_info += {'default devices': config_host['CONFIG_MINIKCONF_MODE'] == '--defconfig'} |
| 2230 | summary_info += {'plugin support': config_host.has_key('CONFIG_PLUGIN')} |
| 2231 | summary_info += {'fuzzing support': config_host.has_key('CONFIG_FUZZ')} |
| 2232 | if config_host.has_key('HAVE_GDB_BIN') |
| 2233 | summary_info += {'gdb': config_host['HAVE_GDB_BIN']} |
| 2234 | endif |
| 2235 | summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')} |
| 2236 | summary_info += {'rng-none': config_host.has_key('CONFIG_RNG_NONE')} |
| 2237 | summary_info += {'Linux keyring': config_host.has_key('CONFIG_SECRET_KEYRING')} |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 2238 | summary_info += {'FUSE exports': fuse.found()} |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 2239 | summary_info += {'FUSE lseek': fuse_lseek.found()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 2240 | summary(summary_info, bool_yn: true) |
| 2241 | |
| 2242 | if not supported_cpus.contains(cpu) |
| 2243 | message() |
| 2244 | warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!') |
| 2245 | message() |
| 2246 | message('CPU host architecture ' + cpu + ' support is not currently maintained.') |
| 2247 | message('The QEMU project intends to remove support for this host CPU in') |
| 2248 | message('a future release if nobody volunteers to maintain it and to') |
| 2249 | message('provide a build host for our continuous integration setup.') |
| 2250 | message('configure has succeeded and you can continue to build, but') |
| 2251 | message('if you care about QEMU on this platform you should contact') |
| 2252 | message('us upstream at qemu-devel@nongnu.org.') |
| 2253 | endif |
| 2254 | |
| 2255 | if not supported_oses.contains(targetos) |
| 2256 | message() |
| 2257 | warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!') |
| 2258 | message() |
| 2259 | message('Host OS ' + targetos + 'support is not currently maintained.') |
| 2260 | message('The QEMU project intends to remove support for this host OS in') |
| 2261 | message('a future release if nobody volunteers to maintain it and to') |
| 2262 | message('provide a build host for our continuous integration setup.') |
| 2263 | message('configure has succeeded and you can continue to build, but') |
| 2264 | message('if you care about QEMU on this platform you should contact') |
| 2265 | message('us upstream at qemu-devel@nongnu.org.') |
| 2266 | endif |