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