Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 1 | project('qemu', ['c'], meson_version: '>=0.58.2', |
| 2 | default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto', |
| 3 | 'b_staticpic=false'], |
| 4 | version: files('VERSION')) |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 5 | |
| 6 | not_found = dependency('', required: false) |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 7 | keyval = import('keyval') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 8 | ss = import('sourceset') |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 9 | fs = import('fs') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 10 | |
Paolo Bonzini | ce1c1e7 | 2020-01-28 16:41:44 +0100 | [diff] [blame] | 11 | sh = find_program('sh') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 12 | cc = meson.get_compiler('c') |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 13 | config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 14 | enable_modules = 'CONFIG_MODULES' in config_host |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 15 | enable_static = 'CONFIG_STATIC' in config_host |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 16 | |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 17 | # Allow both shared and static libraries unless --enable-static |
| 18 | static_kwargs = enable_static ? {'static': true} : {} |
| 19 | |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 20 | # Temporary directory used for files created while |
| 21 | # configure runs. Since it is in the build directory |
| 22 | # we can safely blow away any previous version of it |
| 23 | # (and we need not jump through hoops to try to delete |
| 24 | # it when configure exits.) |
| 25 | tmpdir = meson.current_build_dir() / 'meson-private/temp' |
Marc-André Lureau | 8fe1123 | 2020-09-11 14:42:48 +0200 | [diff] [blame] | 26 | |
| 27 | if get_option('qemu_suffix').startswith('/') |
| 28 | error('qemu_suffix cannot start with a /') |
| 29 | endif |
| 30 | |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 31 | qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix') |
Marc-André Lureau | ab4c099 | 2020-08-26 15:04:16 +0400 | [diff] [blame] | 32 | qemu_datadir = get_option('datadir') / get_option('qemu_suffix') |
Marc-André Lureau | 491e74c | 2020-08-26 15:04:17 +0400 | [diff] [blame] | 33 | qemu_docdir = get_option('docdir') / get_option('qemu_suffix') |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 34 | qemu_moddir = get_option('libdir') / get_option('qemu_suffix') |
| 35 | |
| 36 | qemu_desktopdir = get_option('datadir') / 'applications' |
| 37 | qemu_icondir = get_option('datadir') / 'icons' |
| 38 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 39 | config_host_data = configuration_data() |
| 40 | genh = [] |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 41 | |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 42 | target_dirs = config_host['TARGET_DIRS'].split() |
| 43 | have_user = false |
| 44 | have_system = false |
| 45 | foreach target : target_dirs |
| 46 | have_user = have_user or target.endswith('-user') |
| 47 | have_system = have_system or target.endswith('-softmmu') |
| 48 | endforeach |
| 49 | have_tools = 'CONFIG_TOOLS' in config_host |
| 50 | have_block = have_system or have_tools |
| 51 | |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 52 | python = import('python').find_installation() |
| 53 | |
| 54 | supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux'] |
Sergei Trofimovich | 6125673 | 2020-10-12 18:57:19 +0100 | [diff] [blame] | 55 | supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64', |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 56 | 'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64'] |
| 57 | |
| 58 | cpu = host_machine.cpu_family() |
| 59 | targetos = host_machine.system() |
| 60 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 61 | if cpu in ['x86', 'x86_64'] |
| 62 | kvm_targets = ['i386-softmmu', 'x86_64-softmmu'] |
| 63 | elif cpu == 'aarch64' |
| 64 | kvm_targets = ['aarch64-softmmu'] |
| 65 | elif cpu == 's390x' |
| 66 | kvm_targets = ['s390x-softmmu'] |
| 67 | elif cpu in ['ppc', 'ppc64'] |
| 68 | kvm_targets = ['ppc-softmmu', 'ppc64-softmmu'] |
Huacai Chen | fbc5884 | 2020-10-07 16:39:28 +0800 | [diff] [blame] | 69 | elif cpu in ['mips', 'mips64'] |
| 70 | kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu'] |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 71 | else |
| 72 | kvm_targets = [] |
| 73 | endif |
| 74 | |
| 75 | accelerator_targets = { 'CONFIG_KVM': kvm_targets } |
Alexander Graf | 844a06b | 2021-09-16 17:54:02 +0200 | [diff] [blame] | 76 | |
| 77 | if cpu in ['aarch64'] |
| 78 | accelerator_targets += { |
| 79 | 'CONFIG_HVF': ['aarch64-softmmu'] |
| 80 | } |
| 81 | endif |
| 82 | |
Alex Bennée | 0c3e41d | 2020-11-10 19:23:09 +0000 | [diff] [blame] | 83 | if cpu in ['x86', 'x86_64', 'arm', 'aarch64'] |
Marc-André Lureau | 2a2d51b | 2021-09-14 16:30:45 +0400 | [diff] [blame] | 84 | # i386 emulator provides xenpv machine type for multiple architectures |
Alex Bennée | 0c3e41d | 2020-11-10 19:23:09 +0000 | [diff] [blame] | 85 | accelerator_targets += { |
| 86 | 'CONFIG_XEN': ['i386-softmmu', 'x86_64-softmmu'], |
| 87 | } |
| 88 | endif |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 89 | if cpu in ['x86', 'x86_64'] |
| 90 | accelerator_targets += { |
| 91 | 'CONFIG_HAX': ['i386-softmmu', 'x86_64-softmmu'], |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 92 | 'CONFIG_HVF': ['x86_64-softmmu'], |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 93 | 'CONFIG_NVMM': ['i386-softmmu', 'x86_64-softmmu'], |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 94 | 'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'], |
| 95 | } |
| 96 | endif |
| 97 | |
Paolo Bonzini | a1b176f | 2021-07-12 14:22:08 +0200 | [diff] [blame] | 98 | modular_tcg = [] |
| 99 | # Darwin does not support references to thread-local variables in modules |
| 100 | if targetos != 'darwin' |
| 101 | modular_tcg = ['i386-softmmu', 'x86_64-softmmu'] |
| 102 | endif |
Gerd Hoffmann | dae0ec1 | 2021-06-24 12:38:31 +0200 | [diff] [blame] | 103 | |
Philippe Mathieu-Daudé | eae9a1d | 2021-01-14 18:45:08 +0100 | [diff] [blame] | 104 | edk2_targets = [ 'arm-softmmu', 'aarch64-softmmu', 'i386-softmmu', 'x86_64-softmmu' ] |
Paolo Bonzini | e49c0ef | 2021-09-23 06:55:28 -0400 | [diff] [blame] | 105 | unpack_edk2_blobs = false |
| 106 | foreach target : edk2_targets |
| 107 | if target in target_dirs |
| 108 | bzip2 = find_program('bzip2', required: get_option('install_blobs')) |
| 109 | unpack_edk2_blobs = bzip2.found() |
| 110 | break |
| 111 | endif |
| 112 | endforeach |
Philippe Mathieu-Daudé | 45b545d | 2021-01-14 18:45:09 +0100 | [diff] [blame] | 113 | |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 114 | dtrace = not_found |
| 115 | stap = not_found |
| 116 | if 'dtrace' in get_option('trace_backends') |
| 117 | dtrace = find_program('dtrace', required: true) |
| 118 | stap = find_program('stap', required: false) |
| 119 | if stap.found() |
| 120 | # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol |
| 121 | # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility |
| 122 | # instead. QEMU --enable-modules depends on this because the SystemTap |
| 123 | # semaphores are linked into the main binary and not the module's shared |
| 124 | # object. |
| 125 | add_global_arguments('-DSTAP_SDT_V2', |
| 126 | native: false, language: ['c', 'cpp', 'objc']) |
| 127 | endif |
| 128 | endif |
| 129 | |
Paolo Bonzini | 201e8ed | 2020-09-01 07:45:54 -0400 | [diff] [blame] | 130 | ################## |
| 131 | # Compiler flags # |
| 132 | ################## |
| 133 | |
Alexander Bulekov | ff9ed62 | 2020-09-09 18:05:16 -0400 | [diff] [blame] | 134 | # Specify linker-script with add_project_link_arguments so that it is not placed |
| 135 | # within a linker --start-group/--end-group pair |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 136 | if get_option('fuzzing') |
| 137 | add_project_link_arguments(['-Wl,-T,', |
| 138 | (meson.current_source_dir() / 'tests/qtest/fuzz/fork_fuzz.ld')], |
| 139 | native: false, language: ['c', 'cpp', 'objc']) |
| 140 | |
| 141 | # Specify a filter to only instrument code that is directly related to |
| 142 | # virtual-devices. |
| 143 | configure_file(output: 'instrumentation-filter', |
| 144 | input: 'scripts/oss-fuzz/instrumentation-filter-template', |
| 145 | copy: true) |
| 146 | add_global_arguments( |
| 147 | cc.get_supported_arguments('-fsanitize-coverage-allowlist=instrumentation-filter'), |
| 148 | native: false, language: ['c', 'cpp', 'objc']) |
| 149 | |
| 150 | if get_option('fuzzing_engine') == '' |
| 151 | # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the |
| 152 | # compiled code. To build non-fuzzer binaries with --enable-fuzzing, link |
| 153 | # everything with fsanitize=fuzzer-no-link. Otherwise, the linker will be |
| 154 | # unable to bind the fuzzer-related callbacks added by instrumentation. |
| 155 | add_global_arguments('-fsanitize=fuzzer-no-link', |
| 156 | native: false, language: ['c', 'cpp', 'objc']) |
| 157 | add_global_link_arguments('-fsanitize=fuzzer-no-link', |
Alexander Bulekov | ff9ed62 | 2020-09-09 18:05:16 -0400 | [diff] [blame] | 158 | native: false, language: ['c', 'cpp', 'objc']) |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 159 | # For the actual fuzzer binaries, we need to link against the libfuzzer |
| 160 | # library. They need to be configurable, to support OSS-Fuzz |
| 161 | fuzz_exe_ldflags = ['-fsanitize=fuzzer'] |
| 162 | else |
| 163 | # LIB_FUZZING_ENGINE was set; assume we are running on OSS-Fuzz, and |
| 164 | # the needed CFLAGS have already been provided |
| 165 | fuzz_exe_ldflags = get_option('fuzzing_engine').split() |
| 166 | endif |
Alexander Bulekov | ff9ed62 | 2020-09-09 18:05:16 -0400 | [diff] [blame] | 167 | endif |
| 168 | |
Marc-André Lureau | 5fc0617 | 2021-01-14 16:56:02 +0400 | [diff] [blame] | 169 | add_global_arguments(config_host['QEMU_CFLAGS'].split(), |
| 170 | native: false, language: ['c', 'objc']) |
| 171 | add_global_arguments(config_host['QEMU_CXXFLAGS'].split(), |
| 172 | native: false, language: 'cpp') |
| 173 | add_global_link_arguments(config_host['QEMU_LDFLAGS'].split(), |
| 174 | native: false, language: ['c', 'cpp', 'objc']) |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 175 | |
Paolo Bonzini | 1e6e616 | 2020-10-14 08:45:42 -0400 | [diff] [blame] | 176 | if targetos == 'linux' |
| 177 | add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers', |
| 178 | '-isystem', 'linux-headers', |
| 179 | language: ['c', 'cpp']) |
| 180 | endif |
| 181 | |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 182 | add_project_arguments('-iquote', '.', |
Paolo Bonzini | 1e6e616 | 2020-10-14 08:45:42 -0400 | [diff] [blame] | 183 | '-iquote', meson.current_source_dir(), |
Paolo Bonzini | 1e6e616 | 2020-10-14 08:45:42 -0400 | [diff] [blame] | 184 | '-iquote', meson.current_source_dir() / 'include', |
| 185 | '-iquote', meson.current_source_dir() / 'disas/libvixl', |
| 186 | language: ['c', 'cpp', 'objc']) |
Alexander Bulekov | c46f76d | 2020-09-02 13:36:50 -0400 | [diff] [blame] | 187 | |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 188 | link_language = meson.get_external_property('link_language', 'cpp') |
| 189 | if link_language == 'cpp' |
| 190 | add_languages('cpp', required: true, native: false) |
| 191 | endif |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 192 | if host_machine.system() == 'darwin' |
| 193 | add_languages('objc', required: false, native: false) |
| 194 | endif |
| 195 | |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 196 | sparse = find_program('cgcc', required: get_option('sparse')) |
| 197 | if sparse.found() |
Paolo Bonzini | 968b4db | 2020-02-03 14:45:33 +0100 | [diff] [blame] | 198 | run_target('sparse', |
| 199 | command: [find_program('scripts/check_sparse.py'), |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 200 | 'compile_commands.json', sparse.full_path(), '-Wbitwise', |
| 201 | '-Wno-transparent-union', '-Wno-old-initializer', |
| 202 | '-Wno-non-pointer-null']) |
Paolo Bonzini | 968b4db | 2020-02-03 14:45:33 +0100 | [diff] [blame] | 203 | endif |
| 204 | |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 205 | ########################################### |
| 206 | # Target-specific checks and dependencies # |
| 207 | ########################################### |
| 208 | |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 209 | if get_option('fuzzing') and get_option('fuzzing_engine') == '' and \ |
| 210 | not cc.links(''' |
| 211 | #include <stdint.h> |
| 212 | #include <sys/types.h> |
| 213 | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size); |
| 214 | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; } |
| 215 | ''', |
| 216 | args: ['-Werror', '-fsanitize=fuzzer']) |
| 217 | error('Your compiler does not support -fsanitize=fuzzer') |
| 218 | endif |
| 219 | |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 220 | if 'ftrace' in get_option('trace_backends') and targetos != 'linux' |
| 221 | error('ftrace is supported only on Linux') |
| 222 | endif |
| 223 | if 'syslog' in get_option('trace_backends') and not cc.compiles(''' |
| 224 | #include <syslog.h> |
| 225 | int main(void) { |
| 226 | openlog("qemu", LOG_PID, LOG_DAEMON); |
| 227 | syslog(LOG_INFO, "configure"); |
| 228 | return 0; |
| 229 | }''') |
| 230 | error('syslog is not supported on this system') |
| 231 | endif |
| 232 | |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 233 | if targetos != 'linux' and get_option('mpath').enabled() |
| 234 | error('Multipath is supported only on Linux') |
| 235 | endif |
| 236 | |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 237 | if targetos != 'linux' and get_option('multiprocess').enabled() |
| 238 | error('Multiprocess QEMU is supported only on Linux') |
| 239 | endif |
| 240 | multiprocess_allowed = targetos == 'linux' and not get_option('multiprocess').disabled() |
| 241 | |
Paolo Bonzini | 7fa1c63 | 2021-06-01 10:00:48 +0200 | [diff] [blame] | 242 | libm = cc.find_library('m', required: false) |
Paolo Bonzini | 6d7c7c2 | 2021-06-03 15:01:35 +0200 | [diff] [blame] | 243 | threads = dependency('threads') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 244 | util = cc.find_library('util', required: false) |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 245 | winmm = [] |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 246 | socket = [] |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 247 | version_res = [] |
Marc-André Lureau | d92989a | 2019-08-20 19:48:59 +0400 | [diff] [blame] | 248 | coref = [] |
| 249 | iokit = [] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 250 | emulator_link_args = [] |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 251 | nvmm =not_found |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 252 | hvf = not_found |
Paolo Bonzini | a630508 | 2021-10-07 15:08:15 +0200 | [diff] [blame] | 253 | host_dsosuf = '.so' |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 254 | if targetos == 'windows' |
| 255 | socket = cc.find_library('ws2_32') |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 256 | winmm = cc.find_library('winmm') |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 257 | |
| 258 | win = import('windows') |
| 259 | version_res = win.compile_resources('version.rc', |
| 260 | depend_files: files('pc-bios/qemu-nsis.ico'), |
| 261 | include_directories: include_directories('.')) |
Paolo Bonzini | a630508 | 2021-10-07 15:08:15 +0200 | [diff] [blame] | 262 | host_dsosuf = '.dll' |
Marc-André Lureau | d92989a | 2019-08-20 19:48:59 +0400 | [diff] [blame] | 263 | elif targetos == 'darwin' |
| 264 | coref = dependency('appleframeworks', modules: 'CoreFoundation') |
Joelle van Dyne | 14176c8 | 2021-03-15 11:03:38 -0700 | [diff] [blame] | 265 | iokit = dependency('appleframeworks', modules: 'IOKit', required: false) |
Paolo Bonzini | a630508 | 2021-10-07 15:08:15 +0200 | [diff] [blame] | 266 | host_dsosuf = '.dylib' |
Paolo Bonzini | cfad62f | 2020-08-09 23:47:45 +0200 | [diff] [blame] | 267 | elif targetos == 'sunos' |
| 268 | socket = [cc.find_library('socket'), |
| 269 | cc.find_library('nsl'), |
| 270 | cc.find_library('resolv')] |
| 271 | elif targetos == 'haiku' |
| 272 | socket = [cc.find_library('posix_error_mapper'), |
| 273 | cc.find_library('network'), |
| 274 | cc.find_library('bsd')] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 275 | elif targetos == 'openbsd' |
| 276 | if not get_option('tcg').disabled() and target_dirs.length() > 0 |
| 277 | # Disable OpenBSD W^X if available |
| 278 | emulator_link_args = cc.get_supported_link_arguments('-Wl,-z,wxneeded') |
| 279 | endif |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 280 | endif |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 281 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 282 | accelerators = [] |
| 283 | if not get_option('kvm').disabled() and targetos == 'linux' |
| 284 | accelerators += 'CONFIG_KVM' |
| 285 | endif |
| 286 | if not get_option('xen').disabled() and 'CONFIG_XEN_BACKEND' in config_host |
| 287 | accelerators += 'CONFIG_XEN' |
| 288 | have_xen_pci_passthrough = not get_option('xen_pci_passthrough').disabled() and targetos == 'linux' |
| 289 | else |
| 290 | have_xen_pci_passthrough = false |
| 291 | endif |
| 292 | if not get_option('whpx').disabled() and targetos == 'windows' |
Sunil Muthuswamy | 57e2a1f | 2020-10-22 00:27:55 +0000 | [diff] [blame] | 293 | if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64' |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 294 | error('WHPX requires 64-bit host') |
| 295 | elif cc.has_header('WinHvPlatform.h', required: get_option('whpx')) and \ |
| 296 | cc.has_header('WinHvEmulation.h', required: get_option('whpx')) |
| 297 | accelerators += 'CONFIG_WHPX' |
| 298 | endif |
| 299 | endif |
| 300 | if not get_option('hvf').disabled() |
| 301 | hvf = dependency('appleframeworks', modules: 'Hypervisor', |
| 302 | required: get_option('hvf')) |
| 303 | if hvf.found() |
| 304 | accelerators += 'CONFIG_HVF' |
| 305 | endif |
| 306 | endif |
| 307 | if not get_option('hax').disabled() |
| 308 | if get_option('hax').enabled() or targetos in ['windows', 'darwin', 'netbsd'] |
| 309 | accelerators += 'CONFIG_HAX' |
| 310 | endif |
| 311 | endif |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 312 | if targetos == 'netbsd' |
| 313 | if cc.has_header_symbol('nvmm.h', 'nvmm_cpu_stop', required: get_option('nvmm')) |
| 314 | nvmm = cc.find_library('nvmm', required: get_option('nvmm')) |
| 315 | endif |
| 316 | if nvmm.found() |
| 317 | accelerators += 'CONFIG_NVMM' |
| 318 | endif |
| 319 | endif |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 320 | |
| 321 | tcg_arch = config_host['ARCH'] |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 322 | if not get_option('tcg').disabled() |
| 323 | if cpu not in supported_cpus |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 324 | if get_option('tcg_interpreter') |
Philippe Mathieu-Daudé | 39687ac | 2021-01-25 15:45:29 +0100 | [diff] [blame] | 325 | warning('Unsupported CPU @0@, will use TCG with TCI (experimental and slow)'.format(cpu)) |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 326 | else |
| 327 | error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu)) |
| 328 | endif |
Philippe Mathieu-Daudé | fa2f7b0 | 2021-01-25 15:45:30 +0100 | [diff] [blame] | 329 | elif get_option('tcg_interpreter') |
| 330 | warning('Use of the TCG interpretor is not recommended on this host') |
| 331 | warning('architecture. There is a native TCG execution backend available') |
| 332 | warning('which provides substantially better performance and reliability.') |
| 333 | warning('It is strongly recommended to remove the --enable-tcg-interpreter') |
| 334 | warning('configuration option on this architecture to use the native') |
| 335 | warning('backend.') |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 336 | endif |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 337 | if get_option('tcg_interpreter') |
| 338 | tcg_arch = 'tci' |
| 339 | elif config_host['ARCH'] == 'sparc64' |
| 340 | tcg_arch = 'sparc' |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 341 | elif config_host['ARCH'] in ['x86_64', 'x32'] |
| 342 | tcg_arch = 'i386' |
| 343 | elif config_host['ARCH'] == 'ppc64' |
| 344 | tcg_arch = 'ppc' |
| 345 | elif config_host['ARCH'] in ['riscv32', 'riscv64'] |
| 346 | tcg_arch = 'riscv' |
| 347 | endif |
| 348 | add_project_arguments('-iquote', meson.current_source_dir() / 'tcg' / tcg_arch, |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 349 | language: ['c', 'cpp', 'objc']) |
| 350 | |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 351 | accelerators += 'CONFIG_TCG' |
| 352 | config_host += { 'CONFIG_TCG': 'y' } |
| 353 | endif |
| 354 | |
| 355 | if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled() |
| 356 | error('KVM not available on this platform') |
| 357 | endif |
| 358 | if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled() |
| 359 | error('HVF not available on this platform') |
| 360 | endif |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 361 | if 'CONFIG_NVMM' not in accelerators and get_option('nvmm').enabled() |
| 362 | error('NVMM not available on this platform') |
| 363 | endif |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 364 | if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled() |
| 365 | error('WHPX not available on this platform') |
| 366 | endif |
| 367 | if not have_xen_pci_passthrough and get_option('xen_pci_passthrough').enabled() |
| 368 | if 'CONFIG_XEN' in accelerators |
| 369 | error('Xen PCI passthrough not available on this platform') |
| 370 | else |
| 371 | error('Xen PCI passthrough requested but Xen not enabled') |
| 372 | endif |
| 373 | endif |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 374 | |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 375 | ################ |
| 376 | # Dependencies # |
| 377 | ################ |
| 378 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 379 | # The path to glib.h is added to all compilation commands. This was |
| 380 | # grandfathered in from the QEMU Makefiles. |
| 381 | add_project_arguments(config_host['GLIB_CFLAGS'].split(), |
| 382 | native: false, language: ['c', 'cpp', 'objc']) |
Marc-André Lureau | 953d5a9 | 2020-12-15 12:03:19 +0400 | [diff] [blame] | 383 | glib = declare_dependency(compile_args: config_host['GLIB_CFLAGS'].split(), |
| 384 | link_args: config_host['GLIB_LIBS'].split()) |
| 385 | # override glib dep with the configure results (for subprojects) |
| 386 | meson.override_dependency('glib-2.0', glib) |
| 387 | |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 388 | gio = not_found |
| 389 | if 'CONFIG_GIO' in config_host |
| 390 | gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(), |
| 391 | link_args: config_host['GIO_LIBS'].split()) |
| 392 | endif |
| 393 | lttng = not_found |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 394 | if 'ust' in get_option('trace_backends') |
| 395 | lttng = dependency('lttng-ust', required: true, method: 'pkg-config', |
| 396 | kwargs: static_kwargs) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 397 | endif |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 398 | pixman = not_found |
| 399 | if have_system or have_tools |
| 400 | pixman = dependency('pixman-1', required: have_system, version:'>=0.21.8', |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 401 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 402 | endif |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 403 | zlib = dependency('zlib', required: true, kwargs: static_kwargs) |
Paolo Bonzini | 53c22b6 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 404 | |
Paolo Bonzini | ff66f3e | 2021-10-07 15:08:20 +0200 | [diff] [blame] | 405 | libaio = not_found |
| 406 | if not get_option('linux_aio').auto() or have_block |
| 407 | libaio = cc.find_library('aio', has_headers: ['libaio.h'], |
| 408 | required: get_option('linux_aio'), |
| 409 | kwargs: static_kwargs) |
| 410 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 411 | linux_io_uring = not_found |
Paolo Bonzini | 53c22b6 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 412 | if not get_option('linux_io_uring').auto() or have_block |
| 413 | linux_io_uring = dependency('liburing', required: get_option('linux_io_uring'), |
| 414 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 415 | endif |
| 416 | libxml2 = not_found |
Paolo Bonzini | c5b36c2 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 417 | if not get_option('libxml2').auto() or have_block |
| 418 | libxml2 = dependency('libxml-2.0', required: get_option('libxml2'), |
| 419 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 420 | endif |
| 421 | libnfs = not_found |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 422 | if not get_option('libnfs').auto() or have_block |
| 423 | libnfs = dependency('libnfs', version: '>=1.9.3', |
| 424 | required: get_option('libnfs'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 425 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 426 | endif |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 427 | |
| 428 | libattr_test = ''' |
| 429 | #include <stddef.h> |
| 430 | #include <sys/types.h> |
| 431 | #ifdef CONFIG_LIBATTR |
| 432 | #include <attr/xattr.h> |
| 433 | #else |
| 434 | #include <sys/xattr.h> |
| 435 | #endif |
| 436 | int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }''' |
| 437 | |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 438 | libattr = not_found |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 439 | have_old_libattr = false |
| 440 | if not get_option('attr').disabled() |
| 441 | if cc.links(libattr_test) |
| 442 | libattr = declare_dependency() |
| 443 | else |
| 444 | libattr = cc.find_library('attr', has_headers: ['attr/xattr.h'], |
| 445 | required: get_option('attr'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 446 | kwargs: static_kwargs) |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 447 | if libattr.found() and not \ |
| 448 | cc.links(libattr_test, dependencies: libattr, args: '-DCONFIG_LIBATTR') |
| 449 | libattr = not_found |
| 450 | if get_option('attr').enabled() |
| 451 | error('could not link libattr') |
| 452 | else |
| 453 | warning('could not link libattr, disabling') |
| 454 | endif |
| 455 | else |
| 456 | have_old_libattr = libattr.found() |
| 457 | endif |
| 458 | endif |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 459 | endif |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 460 | |
Paolo Bonzini | c1ec494 | 2021-01-07 14:04:00 +0100 | [diff] [blame] | 461 | cocoa = dependency('appleframeworks', modules: 'Cocoa', required: get_option('cocoa')) |
| 462 | if cocoa.found() and get_option('sdl').enabled() |
| 463 | error('Cocoa and SDL cannot be enabled at the same time') |
| 464 | endif |
| 465 | if cocoa.found() and get_option('gtk').enabled() |
| 466 | error('Cocoa and GTK+ cannot be enabled at the same time') |
| 467 | endif |
| 468 | |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 469 | seccomp = not_found |
Paolo Bonzini | 90835c2 | 2020-11-17 14:22:24 +0100 | [diff] [blame] | 470 | if not get_option('seccomp').auto() or have_system or have_tools |
| 471 | seccomp = dependency('libseccomp', version: '>=2.3.0', |
| 472 | required: get_option('seccomp'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 473 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 474 | endif |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 475 | |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 476 | libcap_ng = not_found |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 477 | if not get_option('cap_ng').auto() or have_system or have_tools |
| 478 | libcap_ng = cc.find_library('cap-ng', has_headers: ['cap-ng.h'], |
| 479 | required: get_option('cap_ng'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 480 | kwargs: static_kwargs) |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 481 | endif |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 482 | if libcap_ng.found() and not cc.links(''' |
| 483 | #include <cap-ng.h> |
| 484 | int main(void) |
| 485 | { |
| 486 | capng_capability_to_name(CAPNG_EFFECTIVE); |
| 487 | return 0; |
| 488 | }''', dependencies: libcap_ng) |
| 489 | libcap_ng = not_found |
| 490 | if get_option('cap_ng').enabled() |
| 491 | error('could not link libcap-ng') |
| 492 | else |
| 493 | warning('could not link libcap-ng, disabling') |
| 494 | endif |
| 495 | endif |
| 496 | |
Paolo Bonzini | 1917ec6 | 2020-08-26 03:24:11 -0400 | [diff] [blame] | 497 | if get_option('xkbcommon').auto() and not have_system and not have_tools |
| 498 | xkbcommon = not_found |
| 499 | else |
| 500 | xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 501 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | ade60d4 | 2019-07-15 14:48:31 +0400 | [diff] [blame] | 502 | endif |
Paolo Bonzini | e172399 | 2021-10-07 15:08:21 +0200 | [diff] [blame^] | 503 | |
Marc-André Lureau | cdaf072 | 2019-07-22 23:47:50 +0400 | [diff] [blame] | 504 | vde = not_found |
Paolo Bonzini | e172399 | 2021-10-07 15:08:21 +0200 | [diff] [blame^] | 505 | if not get_option('vde').auto() or have_system or have_tools |
| 506 | vde = cc.find_library('vdeplug', has_headers: ['libvdeplug.h'], |
| 507 | required: get_option('vde'), |
| 508 | kwargs: static_kwargs) |
| 509 | endif |
| 510 | if vde.found() and not cc.links(''' |
| 511 | #include <libvdeplug.h> |
| 512 | int main(void) |
| 513 | { |
| 514 | struct vde_open_args a = {0, 0, 0}; |
| 515 | char s[] = ""; |
| 516 | vde_open(s, s, &a); |
| 517 | return 0; |
| 518 | }''', dependencies: vde) |
| 519 | vde = not_found |
| 520 | if get_option('cap_ng').enabled() |
| 521 | error('could not link libvdeplug') |
| 522 | else |
| 523 | warning('could not link libvdeplug, disabling') |
| 524 | endif |
Marc-André Lureau | cdaf072 | 2019-07-22 23:47:50 +0400 | [diff] [blame] | 525 | endif |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 526 | |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 527 | pulse = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 528 | if not get_option('pa').auto() or (targetos == 'linux' and have_system) |
| 529 | pulse = dependency('libpulse', required: get_option('pa'), |
| 530 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 531 | endif |
| 532 | alsa = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 533 | if not get_option('alsa').auto() or (targetos == 'linux' and have_system) |
| 534 | alsa = dependency('alsa', required: get_option('alsa'), |
| 535 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 536 | endif |
| 537 | jack = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 538 | if not get_option('jack').auto() or have_system |
| 539 | jack = dependency('jack', required: get_option('jack'), |
| 540 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 541 | endif |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 542 | |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 543 | spice = not_found |
Gerd Hoffmann | d72c34c | 2020-10-14 14:11:18 +0200 | [diff] [blame] | 544 | spice_headers = not_found |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 545 | spice_protocol = not_found |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 546 | if 'CONFIG_SPICE' in config_host |
| 547 | spice = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split(), |
| 548 | link_args: config_host['SPICE_LIBS'].split()) |
Gerd Hoffmann | d72c34c | 2020-10-14 14:11:18 +0200 | [diff] [blame] | 549 | spice_headers = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split()) |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 550 | endif |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 551 | if 'CONFIG_SPICE_PROTOCOL' in config_host |
| 552 | spice_protocol = declare_dependency(compile_args: config_host['SPICE_PROTOCOL_CFLAGS'].split()) |
| 553 | endif |
Marc-André Lureau | 5ee24e7 | 2019-07-12 23:16:54 +0400 | [diff] [blame] | 554 | rt = cc.find_library('rt', required: false) |
Paolo Bonzini | ccf7afa | 2020-09-01 06:44:23 -0400 | [diff] [blame] | 555 | libdl = not_found |
| 556 | if 'CONFIG_PLUGIN' in config_host |
Alex Bennée | e8575f2 | 2021-07-14 11:15:36 +0100 | [diff] [blame] | 557 | libdl = cc.find_library('dl', required: false) |
| 558 | if not cc.has_function('dlopen', dependencies: libdl) |
| 559 | error('dlopen not found') |
| 560 | endif |
Paolo Bonzini | ccf7afa | 2020-09-01 06:44:23 -0400 | [diff] [blame] | 561 | endif |
Paolo Bonzini | 99650b6 | 2019-06-10 12:21:14 +0200 | [diff] [blame] | 562 | libiscsi = not_found |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 563 | if not get_option('libiscsi').auto() or have_block |
| 564 | libiscsi = dependency('libiscsi', version: '>=1.9.0', |
| 565 | required: get_option('libiscsi'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 566 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 99650b6 | 2019-06-10 12:21:14 +0200 | [diff] [blame] | 567 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 568 | zstd = not_found |
Paolo Bonzini | b1def33 | 2020-11-17 13:37:39 +0100 | [diff] [blame] | 569 | if not get_option('zstd').auto() or have_block |
| 570 | zstd = dependency('libzstd', version: '>=1.4.0', |
| 571 | required: get_option('zstd'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 572 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 573 | endif |
Marc-André Lureau | ea45896 | 2019-07-12 22:23:46 +0400 | [diff] [blame] | 574 | virgl = not_found |
Paolo Bonzini | 587d59d | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 575 | if not get_option('virglrenderer').auto() or have_system |
| 576 | virgl = dependency('virglrenderer', |
| 577 | method: 'pkg-config', |
| 578 | required: get_option('virglrenderer'), |
| 579 | kwargs: static_kwargs) |
Marc-André Lureau | ea45896 | 2019-07-12 22:23:46 +0400 | [diff] [blame] | 580 | endif |
Marc-André Lureau | 1d7bb6a | 2019-07-12 23:47:06 +0400 | [diff] [blame] | 581 | curl = not_found |
Paolo Bonzini | f9cd86f | 2020-11-17 12:43:15 +0100 | [diff] [blame] | 582 | if not get_option('curl').auto() or have_block |
| 583 | curl = dependency('libcurl', version: '>=7.29.0', |
| 584 | method: 'pkg-config', |
| 585 | required: get_option('curl'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 586 | kwargs: static_kwargs) |
Marc-André Lureau | 1d7bb6a | 2019-07-12 23:47:06 +0400 | [diff] [blame] | 587 | endif |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 588 | libudev = not_found |
Paolo Bonzini | f01496a | 2020-09-16 17:54:14 +0200 | [diff] [blame] | 589 | if targetos == 'linux' and (have_system or have_tools) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 590 | libudev = dependency('libudev', |
Paolo Bonzini | a0fbbb6 | 2020-11-17 12:36:15 +0100 | [diff] [blame] | 591 | method: 'pkg-config', |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 592 | required: get_option('libudev'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 593 | kwargs: static_kwargs) |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 594 | endif |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 595 | |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 596 | mpathlibs = [libudev] |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 597 | mpathpersist = not_found |
| 598 | mpathpersist_new_api = false |
| 599 | if targetos == 'linux' and have_tools and not get_option('mpath').disabled() |
| 600 | mpath_test_source_new = ''' |
| 601 | #include <libudev.h> |
| 602 | #include <mpath_persist.h> |
| 603 | unsigned mpath_mx_alloc_len = 1024; |
| 604 | int logsink; |
| 605 | static struct config *multipath_conf; |
| 606 | extern struct udev *udev; |
| 607 | extern struct config *get_multipath_config(void); |
| 608 | extern void put_multipath_config(struct config *conf); |
| 609 | struct udev *udev; |
| 610 | struct config *get_multipath_config(void) { return multipath_conf; } |
| 611 | void put_multipath_config(struct config *conf) { } |
| 612 | int main(void) { |
| 613 | udev = udev_new(); |
| 614 | multipath_conf = mpath_lib_init(); |
| 615 | return 0; |
| 616 | }''' |
| 617 | mpath_test_source_old = ''' |
| 618 | #include <libudev.h> |
| 619 | #include <mpath_persist.h> |
| 620 | unsigned mpath_mx_alloc_len = 1024; |
| 621 | int logsink; |
| 622 | int main(void) { |
| 623 | struct udev *udev = udev_new(); |
| 624 | mpath_lib_init(udev); |
| 625 | return 0; |
| 626 | }''' |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 627 | libmpathpersist = cc.find_library('mpathpersist', |
| 628 | required: get_option('mpath'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 629 | kwargs: static_kwargs) |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 630 | if libmpathpersist.found() |
| 631 | mpathlibs += libmpathpersist |
| 632 | if enable_static |
| 633 | mpathlibs += cc.find_library('devmapper', |
| 634 | required: get_option('mpath'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 635 | kwargs: static_kwargs) |
Paolo Bonzini | 43b43a4 | 2020-09-17 12:25:09 +0200 | [diff] [blame] | 636 | endif |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 637 | mpathlibs += cc.find_library('multipath', |
| 638 | required: get_option('mpath'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 639 | kwargs: static_kwargs) |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 640 | foreach lib: mpathlibs |
| 641 | if not lib.found() |
| 642 | mpathlibs = [] |
| 643 | break |
| 644 | endif |
| 645 | endforeach |
| 646 | if mpathlibs.length() == 0 |
| 647 | msg = 'Dependencies missing for libmpathpersist' |
| 648 | elif cc.links(mpath_test_source_new, dependencies: mpathlibs) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 649 | mpathpersist = declare_dependency(dependencies: mpathlibs) |
| 650 | mpathpersist_new_api = true |
| 651 | elif cc.links(mpath_test_source_old, dependencies: mpathlibs) |
| 652 | mpathpersist = declare_dependency(dependencies: mpathlibs) |
| 653 | else |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 654 | msg = 'Cannot detect libmpathpersist API' |
| 655 | endif |
| 656 | if not mpathpersist.found() |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 657 | if get_option('mpath').enabled() |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 658 | error(msg) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 659 | else |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 660 | warning(msg + ', disabling') |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 661 | endif |
| 662 | endif |
| 663 | endif |
| 664 | endif |
| 665 | |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 666 | iconv = not_found |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 667 | curses = not_found |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 668 | if have_system and not get_option('curses').disabled() |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 669 | curses_test = ''' |
| 670 | #include <locale.h> |
| 671 | #include <curses.h> |
| 672 | #include <wchar.h> |
| 673 | int main(void) { |
| 674 | wchar_t wch = L'w'; |
| 675 | setlocale(LC_ALL, ""); |
| 676 | resize_term(0, 0); |
| 677 | addwstr(L"wide chars\n"); |
| 678 | addnwstr(&wch, 1); |
| 679 | add_wch(WACS_DEGREE); |
| 680 | return 0; |
| 681 | }''' |
| 682 | |
Yonggang Luo | ca31e30 | 2020-11-17 05:31:06 +0800 | [diff] [blame] | 683 | curses_dep_list = targetos == 'windows' ? ['ncurses', 'ncursesw'] : ['ncursesw'] |
| 684 | foreach curses_dep : curses_dep_list |
| 685 | if not curses.found() |
| 686 | curses = dependency(curses_dep, |
| 687 | required: false, |
| 688 | method: 'pkg-config', |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 689 | kwargs: static_kwargs) |
Yonggang Luo | ca31e30 | 2020-11-17 05:31:06 +0800 | [diff] [blame] | 690 | endif |
| 691 | endforeach |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 692 | msg = get_option('curses').enabled() ? 'curses library not found' : '' |
Paolo Bonzini | 0dbce6e | 2020-11-30 08:07:48 -0500 | [diff] [blame] | 693 | curses_compile_args = ['-DNCURSES_WIDECHAR'] |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 694 | if curses.found() |
Paolo Bonzini | 0dbce6e | 2020-11-30 08:07:48 -0500 | [diff] [blame] | 695 | if cc.links(curses_test, args: curses_compile_args, dependencies: [curses]) |
| 696 | curses = declare_dependency(compile_args: curses_compile_args, dependencies: [curses]) |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 697 | else |
| 698 | msg = 'curses package not usable' |
| 699 | curses = not_found |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 700 | endif |
| 701 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 702 | if not curses.found() |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 703 | has_curses_h = cc.has_header('curses.h', args: curses_compile_args) |
| 704 | if targetos != 'windows' and not has_curses_h |
| 705 | message('Trying with /usr/include/ncursesw') |
| 706 | curses_compile_args += ['-I/usr/include/ncursesw'] |
| 707 | has_curses_h = cc.has_header('curses.h', args: curses_compile_args) |
| 708 | endif |
| 709 | if has_curses_h |
| 710 | curses_libname_list = (targetos == 'windows' ? ['pdcurses'] : ['ncursesw', 'cursesw']) |
| 711 | foreach curses_libname : curses_libname_list |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 712 | libcurses = cc.find_library(curses_libname, |
| 713 | required: false, |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 714 | kwargs: static_kwargs) |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 715 | if libcurses.found() |
| 716 | if cc.links(curses_test, args: curses_compile_args, dependencies: libcurses) |
| 717 | curses = declare_dependency(compile_args: curses_compile_args, |
| 718 | dependencies: [libcurses]) |
| 719 | break |
| 720 | else |
| 721 | msg = 'curses library not usable' |
| 722 | endif |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 723 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 724 | endforeach |
| 725 | endif |
| 726 | endif |
| 727 | if not get_option('iconv').disabled() |
| 728 | foreach link_args : [ ['-liconv'], [] ] |
| 729 | # Programs will be linked with glib and this will bring in libiconv on FreeBSD. |
| 730 | # We need to use libiconv if available because mixing libiconv's headers with |
| 731 | # the system libc does not work. |
| 732 | # However, without adding glib to the dependencies -L/usr/local/lib will not be |
| 733 | # included in the command line and libiconv will not be found. |
| 734 | if cc.links(''' |
| 735 | #include <iconv.h> |
| 736 | int main(void) { |
| 737 | iconv_t conv = iconv_open("WCHAR_T", "UCS-2"); |
| 738 | return conv != (iconv_t) -1; |
| 739 | }''', args: config_host['GLIB_CFLAGS'].split() + config_host['GLIB_LIBS'].split() + link_args) |
| 740 | iconv = declare_dependency(link_args: link_args, dependencies: glib) |
| 741 | break |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 742 | endif |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 743 | endforeach |
| 744 | endif |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 745 | if curses.found() and not iconv.found() |
| 746 | if get_option('iconv').enabled() |
| 747 | error('iconv not available') |
| 748 | endif |
| 749 | msg = 'iconv required for curses UI but not available' |
| 750 | curses = not_found |
| 751 | endif |
| 752 | if not curses.found() and msg != '' |
| 753 | if get_option('curses').enabled() |
| 754 | error(msg) |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 755 | else |
Paolo Bonzini | 925a40d | 2020-10-19 04:42:11 -0400 | [diff] [blame] | 756 | warning(msg + ', disabling') |
Paolo Bonzini | 30fe76b | 2020-10-15 13:26:50 -0400 | [diff] [blame] | 757 | endif |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 758 | endif |
| 759 | endif |
| 760 | |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 761 | brlapi = not_found |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 762 | if not get_option('brlapi').auto() or have_system |
| 763 | brlapi = cc.find_library('brlapi', has_headers: ['brlapi.h'], |
| 764 | required: get_option('brlapi'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 765 | kwargs: static_kwargs) |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 766 | if brlapi.found() and not cc.links(''' |
| 767 | #include <brlapi.h> |
| 768 | #include <stddef.h> |
| 769 | int main(void) { return brlapi__openConnection (NULL, NULL, NULL); }''', dependencies: brlapi) |
| 770 | brlapi = not_found |
| 771 | if get_option('brlapi').enabled() |
| 772 | error('could not link brlapi') |
| 773 | else |
| 774 | warning('could not link brlapi, disabling') |
| 775 | endif |
| 776 | endif |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 777 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 778 | |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 779 | sdl = not_found |
Paolo Bonzini | c1ec494 | 2021-01-07 14:04:00 +0100 | [diff] [blame] | 780 | if not get_option('sdl').auto() or (have_system and not cocoa.found()) |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 781 | sdl = dependency('sdl2', required: get_option('sdl'), kwargs: static_kwargs) |
Paolo Bonzini | 760e432 | 2020-08-26 08:09:48 +0200 | [diff] [blame] | 782 | sdl_image = not_found |
| 783 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 784 | if sdl.found() |
| 785 | # work around 2.0.8 bug |
| 786 | sdl = declare_dependency(compile_args: '-Wno-undef', |
| 787 | dependencies: sdl) |
Volker Rümelin | 7161a43 | 2020-08-29 12:41:58 +0200 | [diff] [blame] | 788 | sdl_image = dependency('SDL2_image', required: get_option('sdl_image'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 789 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 790 | else |
| 791 | if get_option('sdl_image').enabled() |
Sergei Trofimovich | a8dc2ac | 2020-09-08 08:40:16 +0100 | [diff] [blame] | 792 | error('sdl-image required, but SDL was @0@'.format( |
| 793 | get_option('sdl').disabled() ? 'disabled' : 'not found')) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 794 | endif |
| 795 | sdl_image = not_found |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 796 | endif |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 797 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 798 | rbd = not_found |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 799 | if not get_option('rbd').auto() or have_block |
| 800 | librados = cc.find_library('rados', required: get_option('rbd'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 801 | kwargs: static_kwargs) |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 802 | librbd = cc.find_library('rbd', has_headers: ['rbd/librbd.h'], |
| 803 | required: get_option('rbd'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 804 | kwargs: static_kwargs) |
Paolo Bonzini | c518d6c | 2021-01-26 11:20:35 +0100 | [diff] [blame] | 805 | if librados.found() and librbd.found() |
| 806 | if cc.links(''' |
| 807 | #include <stdio.h> |
| 808 | #include <rbd/librbd.h> |
| 809 | int main(void) { |
| 810 | rados_t cluster; |
| 811 | rados_create(&cluster, NULL); |
Peter Lieven | 48672ac | 2021-07-02 19:23:51 +0200 | [diff] [blame] | 812 | #if LIBRBD_VERSION_CODE < LIBRBD_VERSION(1, 12, 0) |
| 813 | #error |
| 814 | #endif |
Paolo Bonzini | c518d6c | 2021-01-26 11:20:35 +0100 | [diff] [blame] | 815 | return 0; |
| 816 | }''', dependencies: [librbd, librados]) |
| 817 | rbd = declare_dependency(dependencies: [librbd, librados]) |
| 818 | elif get_option('rbd').enabled() |
Peter Lieven | 48672ac | 2021-07-02 19:23:51 +0200 | [diff] [blame] | 819 | error('librbd >= 1.12.0 required') |
Paolo Bonzini | c518d6c | 2021-01-26 11:20:35 +0100 | [diff] [blame] | 820 | else |
Peter Lieven | 48672ac | 2021-07-02 19:23:51 +0200 | [diff] [blame] | 821 | warning('librbd >= 1.12.0 not found, disabling') |
Paolo Bonzini | c518d6c | 2021-01-26 11:20:35 +0100 | [diff] [blame] | 822 | endif |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 823 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 824 | endif |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 825 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 826 | glusterfs = not_found |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 827 | glusterfs_ftruncate_has_stat = false |
| 828 | glusterfs_iocb_has_stat = false |
| 829 | if not get_option('glusterfs').auto() or have_block |
| 830 | glusterfs = dependency('glusterfs-api', version: '>=3', |
| 831 | required: get_option('glusterfs'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 832 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 833 | if glusterfs.found() |
| 834 | glusterfs_ftruncate_has_stat = cc.links(''' |
| 835 | #include <glusterfs/api/glfs.h> |
| 836 | |
| 837 | int |
| 838 | main(void) |
| 839 | { |
| 840 | /* new glfs_ftruncate() passes two additional args */ |
| 841 | return glfs_ftruncate(NULL, 0, NULL, NULL); |
| 842 | } |
| 843 | ''', dependencies: glusterfs) |
| 844 | glusterfs_iocb_has_stat = cc.links(''' |
| 845 | #include <glusterfs/api/glfs.h> |
| 846 | |
| 847 | /* new glfs_io_cbk() passes two additional glfs_stat structs */ |
| 848 | static void |
| 849 | glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data) |
| 850 | {} |
| 851 | |
| 852 | int |
| 853 | main(void) |
| 854 | { |
| 855 | glfs_io_cbk iocb = &glusterfs_iocb; |
| 856 | iocb(NULL, 0 , NULL, NULL, NULL); |
| 857 | return 0; |
| 858 | } |
| 859 | ''', dependencies: glusterfs) |
| 860 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 861 | endif |
| 862 | libssh = not_found |
| 863 | if 'CONFIG_LIBSSH' in config_host |
| 864 | libssh = declare_dependency(compile_args: config_host['LIBSSH_CFLAGS'].split(), |
| 865 | link_args: config_host['LIBSSH_LIBS'].split()) |
| 866 | endif |
| 867 | libbzip2 = not_found |
Paolo Bonzini | 29ba611 | 2020-11-17 13:07:52 +0100 | [diff] [blame] | 868 | if not get_option('bzip2').auto() or have_block |
| 869 | libbzip2 = cc.find_library('bz2', has_headers: ['bzlib.h'], |
| 870 | required: get_option('bzip2'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 871 | kwargs: static_kwargs) |
Paolo Bonzini | 29ba611 | 2020-11-17 13:07:52 +0100 | [diff] [blame] | 872 | if libbzip2.found() and not cc.links(''' |
| 873 | #include <bzlib.h> |
| 874 | int main(void) { BZ2_bzlibVersion(); return 0; }''', dependencies: libbzip2) |
| 875 | libbzip2 = not_found |
| 876 | if get_option('bzip2').enabled() |
| 877 | error('could not link libbzip2') |
| 878 | else |
| 879 | warning('could not link libbzip2, disabling') |
| 880 | endif |
| 881 | endif |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 882 | endif |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 883 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 884 | liblzfse = not_found |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 885 | if not get_option('lzfse').auto() or have_block |
| 886 | liblzfse = cc.find_library('lzfse', has_headers: ['lzfse.h'], |
| 887 | required: get_option('lzfse'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 888 | kwargs: static_kwargs) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 889 | endif |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 890 | if liblzfse.found() and not cc.links(''' |
| 891 | #include <lzfse.h> |
| 892 | int main(void) { lzfse_decode_scratch_size(); return 0; }''', dependencies: liblzfse) |
| 893 | liblzfse = not_found |
| 894 | if get_option('lzfse').enabled() |
| 895 | error('could not link liblzfse') |
| 896 | else |
| 897 | warning('could not link liblzfse, disabling') |
| 898 | endif |
| 899 | endif |
| 900 | |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 901 | oss = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 902 | if not get_option('oss').auto() or have_system |
| 903 | if not cc.has_header('sys/soundcard.h') |
| 904 | # not found |
| 905 | elif targetos == 'netbsd' |
| 906 | oss = cc.find_library('ossaudio', required: get_option('oss'), |
| 907 | kwargs: static_kwargs) |
| 908 | else |
| 909 | oss = declare_dependency() |
| 910 | endif |
| 911 | |
| 912 | if not oss.found() |
| 913 | if get_option('oss').enabled() |
| 914 | error('OSS not found') |
| 915 | else |
| 916 | warning('OSS not found, disabling') |
| 917 | endif |
| 918 | endif |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 919 | endif |
| 920 | dsound = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 921 | if not get_option('dsound').auto() or (targetos == 'windows' and have_system) |
| 922 | if cc.has_header('dsound.h') |
| 923 | dsound = declare_dependency(link_args: ['-lole32', '-ldxguid']) |
| 924 | endif |
| 925 | |
| 926 | if not dsound.found() |
| 927 | if get_option('dsound').enabled() |
| 928 | error('DirectSound not found') |
| 929 | else |
| 930 | warning('DirectSound not found, disabling') |
| 931 | endif |
| 932 | endif |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 933 | endif |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 934 | |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 935 | coreaudio = not_found |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 936 | if not get_option('coreaudio').auto() or (targetos == 'darwin' and have_system) |
| 937 | coreaudio = dependency('appleframeworks', modules: 'CoreAudio', |
| 938 | required: get_option('coreaudio')) |
| 939 | if coreaudio.found() and not cc.links(''' |
| 940 | #include <CoreAudio/CoreAudio.h> |
| 941 | int main(void) |
| 942 | { |
| 943 | return (int)AudioGetCurrentHostTime(); |
| 944 | }''') |
| 945 | coreaudio = not_found |
| 946 | endif |
| 947 | |
| 948 | if not coreaudio.found() |
| 949 | if get_option('coreaudio').enabled() |
| 950 | error('CoreAudio not found') |
| 951 | else |
| 952 | warning('CoreAudio not found, disabling') |
| 953 | endif |
| 954 | endif |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 955 | endif |
Thomas Huth | 8bc5184 | 2021-07-13 13:09:02 +0200 | [diff] [blame] | 956 | |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 957 | opengl = not_found |
| 958 | if 'CONFIG_OPENGL' in config_host |
Paolo Bonzini | de2d300 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 959 | opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(), |
| 960 | link_args: config_host['OPENGL_LIBS'].split()) |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 961 | endif |
Thomas Huth | 8bc5184 | 2021-07-13 13:09:02 +0200 | [diff] [blame] | 962 | gbm = not_found |
| 963 | if (have_system or have_tools) and (virgl.found() or opengl.found()) |
| 964 | gbm = dependency('gbm', method: 'pkg-config', required: false, |
| 965 | kwargs: static_kwargs) |
| 966 | endif |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 967 | |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 968 | gnutls = not_found |
Daniel P. Berrangé | cc4c7c7 | 2021-06-30 17:20:02 +0100 | [diff] [blame] | 969 | gnutls_crypto = not_found |
Alyssa Ross | abc14fd | 2021-08-06 14:49:47 +0000 | [diff] [blame] | 970 | if get_option('gnutls').enabled() or (get_option('gnutls').auto() and have_system) |
Daniel P. Berrangé | cc4c7c7 | 2021-06-30 17:20:02 +0100 | [diff] [blame] | 971 | # For general TLS support our min gnutls matches |
| 972 | # that implied by our platform support matrix |
| 973 | # |
| 974 | # For the crypto backends, we look for a newer |
| 975 | # gnutls: |
| 976 | # |
| 977 | # Version 3.6.8 is needed to get XTS |
| 978 | # Version 3.6.13 is needed to get PBKDF |
| 979 | # Version 3.6.14 is needed to get HW accelerated XTS |
| 980 | # |
| 981 | # If newer enough gnutls isn't available, we can |
| 982 | # still use a different crypto backend to satisfy |
| 983 | # the platform support requirements |
| 984 | gnutls_crypto = dependency('gnutls', version: '>=3.6.14', |
| 985 | method: 'pkg-config', |
| 986 | required: false, |
| 987 | kwargs: static_kwargs) |
| 988 | if gnutls_crypto.found() |
| 989 | gnutls = gnutls_crypto |
| 990 | else |
| 991 | # Our min version if all we need is TLS |
| 992 | gnutls = dependency('gnutls', version: '>=3.5.18', |
| 993 | method: 'pkg-config', |
| 994 | required: get_option('gnutls'), |
| 995 | kwargs: static_kwargs) |
| 996 | endif |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 997 | endif |
| 998 | |
Daniel P. Berrangé | 8bd0931 | 2021-07-02 17:38:33 +0100 | [diff] [blame] | 999 | # We prefer use of gnutls for crypto, unless the options |
| 1000 | # explicitly asked for nettle or gcrypt. |
| 1001 | # |
| 1002 | # If gnutls isn't available for crypto, then we'll prefer |
| 1003 | # gcrypt over nettle for performance reasons. |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1004 | gcrypt = not_found |
| 1005 | nettle = not_found |
Daniel P. Berrangé | 6801404 | 2021-07-02 17:00:32 +0100 | [diff] [blame] | 1006 | xts = 'none' |
Daniel P. Berrangé | 8bd0931 | 2021-07-02 17:38:33 +0100 | [diff] [blame] | 1007 | |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1008 | if get_option('nettle').enabled() and get_option('gcrypt').enabled() |
| 1009 | error('Only one of gcrypt & nettle can be enabled') |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1010 | endif |
Daniel P. Berrangé | 8bd0931 | 2021-07-02 17:38:33 +0100 | [diff] [blame] | 1011 | |
| 1012 | # Explicit nettle/gcrypt request, so ignore gnutls for crypto |
| 1013 | if get_option('nettle').enabled() or get_option('gcrypt').enabled() |
Daniel P. Berrangé | cc4c7c7 | 2021-06-30 17:20:02 +0100 | [diff] [blame] | 1014 | gnutls_crypto = not_found |
| 1015 | endif |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1016 | |
Daniel P. Berrangé | 8bd0931 | 2021-07-02 17:38:33 +0100 | [diff] [blame] | 1017 | if not gnutls_crypto.found() |
| 1018 | if (not get_option('gcrypt').auto() or have_system) and not get_option('nettle').enabled() |
| 1019 | gcrypt = dependency('libgcrypt', version: '>=1.8', |
| 1020 | method: 'config-tool', |
| 1021 | required: get_option('gcrypt'), |
| 1022 | kwargs: static_kwargs) |
| 1023 | # Debian has removed -lgpg-error from libgcrypt-config |
| 1024 | # as it "spreads unnecessary dependencies" which in |
| 1025 | # turn breaks static builds... |
| 1026 | if gcrypt.found() and enable_static |
| 1027 | gcrypt = declare_dependency(dependencies: [ |
| 1028 | gcrypt, |
| 1029 | cc.find_library('gpg-error', required: true, kwargs: static_kwargs)]) |
| 1030 | endif |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1031 | endif |
Daniel P. Berrangé | 8bd0931 | 2021-07-02 17:38:33 +0100 | [diff] [blame] | 1032 | if (not get_option('nettle').auto() or have_system) and not gcrypt.found() |
| 1033 | nettle = dependency('nettle', version: '>=3.4', |
| 1034 | method: 'pkg-config', |
| 1035 | required: get_option('nettle'), |
| 1036 | kwargs: static_kwargs) |
| 1037 | if nettle.found() and not cc.has_header('nettle/xts.h', dependencies: nettle) |
| 1038 | xts = 'private' |
| 1039 | endif |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1040 | endif |
| 1041 | endif |
| 1042 | |
| 1043 | gtk = not_found |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1044 | gtkx11 = not_found |
Paolo Bonzini | c23d7b4 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 1045 | vte = not_found |
Paolo Bonzini | c1ec494 | 2021-01-07 14:04:00 +0100 | [diff] [blame] | 1046 | if not get_option('gtk').auto() or (have_system and not cocoa.found()) |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1047 | gtk = dependency('gtk+-3.0', version: '>=3.22.0', |
| 1048 | method: 'pkg-config', |
| 1049 | required: get_option('gtk'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1050 | kwargs: static_kwargs) |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1051 | if gtk.found() |
| 1052 | gtkx11 = dependency('gtk+-x11-3.0', version: '>=3.22.0', |
| 1053 | method: 'pkg-config', |
| 1054 | required: false, |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1055 | kwargs: static_kwargs) |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1056 | gtk = declare_dependency(dependencies: [gtk, gtkx11]) |
Paolo Bonzini | c23d7b4 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 1057 | |
| 1058 | if not get_option('vte').auto() or have_system |
| 1059 | vte = dependency('vte-2.91', |
| 1060 | method: 'pkg-config', |
| 1061 | required: get_option('vte'), |
| 1062 | kwargs: static_kwargs) |
| 1063 | endif |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1064 | endif |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1065 | endif |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1066 | |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1067 | x11 = not_found |
Markus Armbruster | 9d49bcf | 2021-05-03 10:40:33 +0200 | [diff] [blame] | 1068 | if gtkx11.found() |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1069 | x11 = dependency('x11', method: 'pkg-config', required: gtkx11.found(), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1070 | kwargs: static_kwargs) |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1071 | endif |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1072 | vnc = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1073 | png = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1074 | jpeg = not_found |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1075 | sasl = not_found |
Thomas Huth | 95e2289 | 2021-09-06 17:39:39 +0200 | [diff] [blame] | 1076 | if have_system and not get_option('vnc').disabled() |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1077 | vnc = declare_dependency() # dummy dependency |
| 1078 | png = dependency('libpng', required: get_option('vnc_png'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1079 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | 8e242b3 | 2020-11-23 13:34:02 -0500 | [diff] [blame] | 1080 | jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1081 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1082 | sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'], |
| 1083 | required: get_option('vnc_sasl'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1084 | kwargs: static_kwargs) |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1085 | if sasl.found() |
| 1086 | sasl = declare_dependency(dependencies: sasl, |
| 1087 | compile_args: '-DSTRUCT_IOVEC_DEFINED') |
| 1088 | endif |
Marc-André Lureau | 2b1ccdf | 2019-07-16 23:21:02 +0400 | [diff] [blame] | 1089 | endif |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1090 | |
Paolo Bonzini | 05e391a | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1091 | pam = not_found |
| 1092 | if not get_option('auth_pam').auto() or have_system |
| 1093 | pam = cc.find_library('pam', has_headers: ['security/pam_appl.h'], |
| 1094 | required: get_option('auth_pam'), |
| 1095 | kwargs: static_kwargs) |
| 1096 | endif |
| 1097 | if pam.found() and not cc.links(''' |
| 1098 | #include <stddef.h> |
| 1099 | #include <security/pam_appl.h> |
| 1100 | int main(void) { |
| 1101 | const char *service_name = "qemu"; |
| 1102 | const char *user = "frank"; |
| 1103 | const struct pam_conv pam_conv = { 0 }; |
| 1104 | pam_handle_t *pamh = NULL; |
| 1105 | pam_start(service_name, user, &pam_conv, &pamh); |
| 1106 | return 0; |
| 1107 | }''', dependencies: pam) |
| 1108 | pam = not_found |
| 1109 | if get_option('auth_pam').enabled() |
| 1110 | error('could not link libpam') |
| 1111 | else |
| 1112 | warning('could not link libpam, disabling') |
| 1113 | endif |
| 1114 | endif |
| 1115 | |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1116 | snappy = not_found |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1117 | if not get_option('snappy').auto() or have_system |
| 1118 | snappy = cc.find_library('snappy', has_headers: ['snappy-c.h'], |
| 1119 | required: get_option('snappy'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1120 | kwargs: static_kwargs) |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1121 | endif |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1122 | if snappy.found() and not cc.links(''' |
| 1123 | #include <snappy-c.h> |
| 1124 | int main(void) { snappy_max_compressed_length(4096); return 0; }''', dependencies: snappy) |
| 1125 | snappy = not_found |
| 1126 | if get_option('snappy').enabled() |
| 1127 | error('could not link libsnappy') |
| 1128 | else |
| 1129 | warning('could not link libsnappy, disabling') |
| 1130 | endif |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1131 | endif |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1132 | |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1133 | lzo = not_found |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1134 | if not get_option('lzo').auto() or have_system |
| 1135 | lzo = cc.find_library('lzo2', has_headers: ['lzo/lzo1x.h'], |
| 1136 | required: get_option('lzo'), |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1137 | kwargs: static_kwargs) |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 1138 | endif |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1139 | if lzo.found() and not cc.links(''' |
| 1140 | #include <lzo/lzo1x.h> |
| 1141 | int main(void) { lzo_version(); return 0; }''', dependencies: lzo) |
| 1142 | lzo = not_found |
| 1143 | if get_option('lzo').enabled() |
| 1144 | error('could not link liblzo2') |
| 1145 | else |
| 1146 | warning('could not link liblzo2, disabling') |
| 1147 | endif |
| 1148 | endif |
| 1149 | |
Marc-André Lureau | 5516623 | 2019-07-24 19:16:22 +0400 | [diff] [blame] | 1150 | rdma = not_found |
| 1151 | if 'CONFIG_RDMA' in config_host |
| 1152 | rdma = declare_dependency(link_args: config_host['RDMA_LIBS'].split()) |
| 1153 | endif |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 1154 | numa = not_found |
| 1155 | if 'CONFIG_NUMA' in config_host |
| 1156 | numa = declare_dependency(link_args: config_host['NUMA_LIBS'].split()) |
| 1157 | endif |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 1158 | xen = not_found |
| 1159 | if 'CONFIG_XEN_BACKEND' in config_host |
| 1160 | xen = declare_dependency(compile_args: config_host['XEN_CFLAGS'].split(), |
| 1161 | link_args: config_host['XEN_LIBS'].split()) |
| 1162 | endif |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 1163 | cacard = not_found |
Paolo Bonzini | 5f364c5 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1164 | if not get_option('smartcard').auto() or have_system |
| 1165 | cacard = dependency('libcacard', required: get_option('smartcard'), |
| 1166 | version: '>=2.5.1', method: 'pkg-config', |
| 1167 | kwargs: static_kwargs) |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 1168 | endif |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 1169 | u2f = not_found |
| 1170 | if have_system |
| 1171 | u2f = dependency('u2f-emu', required: get_option('u2f'), |
| 1172 | method: 'pkg-config', |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1173 | kwargs: static_kwargs) |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 1174 | endif |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 1175 | usbredir = not_found |
Paolo Bonzini | 18f31e6 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1176 | if not get_option('usb_redir').auto() or have_system |
| 1177 | usbredir = dependency('libusbredirparser-0.5', required: get_option('usb_redir'), |
| 1178 | version: '>=0.6', method: 'pkg-config', |
| 1179 | kwargs: static_kwargs) |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 1180 | endif |
| 1181 | libusb = not_found |
Paolo Bonzini | 90540f3 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1182 | if not get_option('libusb').auto() or have_system |
| 1183 | libusb = dependency('libusb-1.0', required: get_option('libusb'), |
| 1184 | version: '>=1.0.13', method: 'pkg-config', |
| 1185 | kwargs: static_kwargs) |
Paolo Bonzini | 06677ce | 2020-08-06 13:07:39 +0200 | [diff] [blame] | 1186 | endif |
Paolo Bonzini | 90540f3 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1187 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1188 | libpmem = not_found |
Paolo Bonzini | e36e8c7 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 1189 | if not get_option('libpmem').auto() or have_system |
| 1190 | libpmem = dependency('libpmem', required: get_option('libpmem'), |
| 1191 | method: 'pkg-config', kwargs: static_kwargs) |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 1192 | endif |
Bruce Rogers | c7c91a7 | 2020-08-24 09:52:12 -0600 | [diff] [blame] | 1193 | libdaxctl = not_found |
Paolo Bonzini | 83ef168 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 1194 | if not get_option('libdaxctl').auto() or have_system |
| 1195 | libdaxctl = dependency('libdaxctl', required: get_option('libdaxctl'), |
| 1196 | version: '>=57', method: 'pkg-config', |
| 1197 | kwargs: static_kwargs) |
Bruce Rogers | c7c91a7 | 2020-08-24 09:52:12 -0600 | [diff] [blame] | 1198 | endif |
Marc-André Lureau | 8ce0a45 | 2020-08-28 15:07:20 +0400 | [diff] [blame] | 1199 | tasn1 = not_found |
Paolo Bonzini | ba7ed40 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1200 | if gnutls.found() |
| 1201 | tasn1 = dependency('libtasn1', |
| 1202 | method: 'pkg-config', |
| 1203 | kwargs: static_kwargs) |
Marc-André Lureau | 8ce0a45 | 2020-08-28 15:07:20 +0400 | [diff] [blame] | 1204 | endif |
Marc-André Lureau | af04e89 | 2020-08-28 15:07:25 +0400 | [diff] [blame] | 1205 | keyutils = dependency('libkeyutils', required: false, |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1206 | method: 'pkg-config', kwargs: static_kwargs) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1207 | |
Marc-André Lureau | 3909def | 2020-08-28 15:07:33 +0400 | [diff] [blame] | 1208 | has_gettid = cc.has_function('gettid') |
| 1209 | |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 1210 | # Malloc tests |
| 1211 | |
| 1212 | malloc = [] |
| 1213 | if get_option('malloc') == 'system' |
| 1214 | has_malloc_trim = \ |
| 1215 | not get_option('malloc_trim').disabled() and \ |
| 1216 | cc.links('''#include <malloc.h> |
| 1217 | int main(void) { malloc_trim(0); return 0; }''') |
| 1218 | else |
| 1219 | has_malloc_trim = false |
| 1220 | malloc = cc.find_library(get_option('malloc'), required: true) |
| 1221 | endif |
| 1222 | if not has_malloc_trim and get_option('malloc_trim').enabled() |
| 1223 | if get_option('malloc') == 'system' |
| 1224 | error('malloc_trim not available on this platform.') |
| 1225 | else |
| 1226 | error('malloc_trim not available with non-libc memory allocator') |
| 1227 | endif |
| 1228 | endif |
| 1229 | |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 1230 | # Check whether the glibc provides statx() |
| 1231 | |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1232 | gnu_source_prefix = ''' |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 1233 | #ifndef _GNU_SOURCE |
| 1234 | #define _GNU_SOURCE |
| 1235 | #endif |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1236 | ''' |
| 1237 | statx_test = gnu_source_prefix + ''' |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 1238 | #include <sys/stat.h> |
| 1239 | int main(void) { |
| 1240 | struct statx statxbuf; |
| 1241 | statx(0, "", 0, STATX_BASIC_STATS, &statxbuf); |
| 1242 | return 0; |
| 1243 | }''' |
| 1244 | |
| 1245 | has_statx = cc.links(statx_test) |
| 1246 | |
Stefan Hajnoczi | eb6a388 | 2020-11-10 17:11:20 +0000 | [diff] [blame] | 1247 | have_vhost_user_blk_server = (targetos == 'linux' and |
| 1248 | 'CONFIG_VHOST_USER' in config_host) |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 1249 | |
| 1250 | if get_option('vhost_user_blk_server').enabled() |
| 1251 | if targetos != 'linux' |
| 1252 | error('vhost_user_blk_server requires linux') |
Stefan Hajnoczi | eb6a388 | 2020-11-10 17:11:20 +0000 | [diff] [blame] | 1253 | elif 'CONFIG_VHOST_USER' not in config_host |
| 1254 | error('vhost_user_blk_server requires vhost-user support') |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 1255 | endif |
| 1256 | elif get_option('vhost_user_blk_server').disabled() or not have_system |
| 1257 | have_vhost_user_blk_server = false |
| 1258 | endif |
| 1259 | |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1260 | |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 1261 | if get_option('fuse').disabled() and get_option('fuse_lseek').enabled() |
| 1262 | error('Cannot enable fuse-lseek while fuse is disabled') |
| 1263 | endif |
| 1264 | |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 1265 | fuse = dependency('fuse3', required: get_option('fuse'), |
| 1266 | version: '>=3.1', method: 'pkg-config', |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1267 | kwargs: static_kwargs) |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 1268 | |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 1269 | fuse_lseek = not_found |
| 1270 | if not get_option('fuse_lseek').disabled() |
| 1271 | if fuse.version().version_compare('>=3.8') |
| 1272 | # Dummy dependency |
| 1273 | fuse_lseek = declare_dependency() |
| 1274 | elif get_option('fuse_lseek').enabled() |
| 1275 | if fuse.found() |
| 1276 | error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version()) |
| 1277 | else |
| 1278 | error('fuse-lseek requires libfuse, which was not found') |
| 1279 | endif |
| 1280 | endif |
| 1281 | endif |
| 1282 | |
Andrew Melnychenko | 46627f4 | 2021-05-14 14:48:32 +0300 | [diff] [blame] | 1283 | # libbpf |
| 1284 | libbpf = dependency('libbpf', required: get_option('bpf'), method: 'pkg-config') |
| 1285 | if libbpf.found() and not cc.links(''' |
| 1286 | #include <bpf/libbpf.h> |
| 1287 | int main(void) |
| 1288 | { |
| 1289 | bpf_object__destroy_skeleton(NULL); |
| 1290 | return 0; |
| 1291 | }''', dependencies: libbpf) |
| 1292 | libbpf = not_found |
| 1293 | if get_option('bpf').enabled() |
| 1294 | error('libbpf skeleton test failed') |
| 1295 | else |
| 1296 | warning('libbpf skeleton test failed, disabling') |
| 1297 | endif |
| 1298 | endif |
| 1299 | |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 1300 | ################# |
| 1301 | # config-host.h # |
| 1302 | ################# |
| 1303 | |
| 1304 | audio_drivers_selected = [] |
| 1305 | if have_system |
| 1306 | audio_drivers_available = { |
| 1307 | 'alsa': alsa.found(), |
| 1308 | 'coreaudio': coreaudio.found(), |
| 1309 | 'dsound': dsound.found(), |
| 1310 | 'jack': jack.found(), |
| 1311 | 'oss': oss.found(), |
| 1312 | 'pa': pulse.found(), |
| 1313 | 'sdl': sdl.found(), |
| 1314 | } |
Paolo Bonzini | e5424a2 | 2021-10-07 15:06:10 +0200 | [diff] [blame] | 1315 | foreach k, v: audio_drivers_available |
| 1316 | config_host_data.set('CONFIG_AUDIO_' + k.to_upper(), v) |
| 1317 | endforeach |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 1318 | |
| 1319 | # Default to native drivers first, OSS second, SDL third |
| 1320 | audio_drivers_priority = \ |
| 1321 | [ 'pa', 'coreaudio', 'dsound', 'oss' ] + \ |
| 1322 | (targetos == 'linux' ? [] : [ 'sdl' ]) |
| 1323 | audio_drivers_default = [] |
| 1324 | foreach k: audio_drivers_priority |
| 1325 | if audio_drivers_available[k] |
| 1326 | audio_drivers_default += k |
| 1327 | endif |
| 1328 | endforeach |
| 1329 | |
| 1330 | foreach k: get_option('audio_drv_list') |
| 1331 | if k == 'default' |
| 1332 | audio_drivers_selected += audio_drivers_default |
| 1333 | elif not audio_drivers_available[k] |
| 1334 | error('Audio driver "@0@" not available.'.format(k)) |
| 1335 | else |
| 1336 | audio_drivers_selected += k |
| 1337 | endif |
| 1338 | endforeach |
| 1339 | endif |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 1340 | config_host_data.set('CONFIG_AUDIO_DRIVERS', |
| 1341 | '"' + '", "'.join(audio_drivers_selected) + '", ') |
| 1342 | |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1343 | if get_option('cfi') |
| 1344 | cfi_flags=[] |
| 1345 | # Check for dependency on LTO |
| 1346 | if not get_option('b_lto') |
| 1347 | error('Selected Control-Flow Integrity but LTO is disabled') |
| 1348 | endif |
| 1349 | if config_host.has_key('CONFIG_MODULES') |
| 1350 | error('Selected Control-Flow Integrity is not compatible with modules') |
| 1351 | endif |
| 1352 | # Check for cfi flags. CFI requires LTO so we can't use |
| 1353 | # get_supported_arguments, but need a more complex "compiles" which allows |
| 1354 | # custom arguments |
| 1355 | if cc.compiles('int main () { return 0; }', name: '-fsanitize=cfi-icall', |
| 1356 | args: ['-flto', '-fsanitize=cfi-icall'] ) |
| 1357 | cfi_flags += '-fsanitize=cfi-icall' |
| 1358 | else |
| 1359 | error('-fsanitize=cfi-icall is not supported by the compiler') |
| 1360 | endif |
| 1361 | if cc.compiles('int main () { return 0; }', |
| 1362 | name: '-fsanitize-cfi-icall-generalize-pointers', |
| 1363 | args: ['-flto', '-fsanitize=cfi-icall', |
| 1364 | '-fsanitize-cfi-icall-generalize-pointers'] ) |
| 1365 | cfi_flags += '-fsanitize-cfi-icall-generalize-pointers' |
| 1366 | else |
| 1367 | error('-fsanitize-cfi-icall-generalize-pointers is not supported by the compiler') |
| 1368 | endif |
| 1369 | if get_option('cfi_debug') |
| 1370 | if cc.compiles('int main () { return 0; }', |
| 1371 | name: '-fno-sanitize-trap=cfi-icall', |
| 1372 | args: ['-flto', '-fsanitize=cfi-icall', |
| 1373 | '-fno-sanitize-trap=cfi-icall'] ) |
| 1374 | cfi_flags += '-fno-sanitize-trap=cfi-icall' |
| 1375 | else |
| 1376 | error('-fno-sanitize-trap=cfi-icall is not supported by the compiler') |
| 1377 | endif |
| 1378 | endif |
Marc-André Lureau | 5fc0617 | 2021-01-14 16:56:02 +0400 | [diff] [blame] | 1379 | add_global_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc']) |
| 1380 | add_global_link_arguments(cfi_flags, native: false, language: ['c', 'cpp', 'objc']) |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1381 | endif |
| 1382 | |
Joelle van Dyne | 14176c8 | 2021-03-15 11:03:38 -0700 | [diff] [blame] | 1383 | have_host_block_device = (targetos != 'darwin' or |
| 1384 | cc.has_header('IOKit/storage/IOMedia.h')) |
| 1385 | |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 1386 | have_virtfs = (targetos == 'linux' and |
| 1387 | have_system and |
| 1388 | libattr.found() and |
| 1389 | libcap_ng.found()) |
| 1390 | |
Philippe Mathieu-Daudé | 3a489d3 | 2021-01-20 16:15:39 +0100 | [diff] [blame] | 1391 | have_virtfs_proxy_helper = have_virtfs and have_tools |
| 1392 | |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 1393 | if get_option('virtfs').enabled() |
| 1394 | if not have_virtfs |
| 1395 | if targetos != 'linux' |
| 1396 | error('virtio-9p (virtfs) requires Linux') |
| 1397 | elif not libcap_ng.found() or not libattr.found() |
| 1398 | error('virtio-9p (virtfs) requires libcap-ng-devel and libattr-devel') |
| 1399 | elif not have_system |
| 1400 | error('virtio-9p (virtfs) needs system emulation support') |
| 1401 | endif |
| 1402 | endif |
| 1403 | elif get_option('virtfs').disabled() |
| 1404 | have_virtfs = false |
| 1405 | endif |
| 1406 | |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 1407 | foreach k : get_option('trace_backends') |
| 1408 | config_host_data.set('CONFIG_TRACE_' + k.to_upper(), true) |
| 1409 | endforeach |
| 1410 | config_host_data.set_quoted('CONFIG_TRACE_FILE', get_option('trace_file')) |
| 1411 | |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 1412 | config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir')) |
| 1413 | config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix')) |
| 1414 | config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir) |
| 1415 | config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir) |
| 1416 | config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir) |
| 1417 | config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath')) |
| 1418 | config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir')) |
| 1419 | config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir) |
| 1420 | config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir')) |
| 1421 | config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir')) |
| 1422 | config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir) |
| 1423 | config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir')) |
| 1424 | |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 1425 | config_host_data.set('CONFIG_ATTR', libattr.found()) |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 1426 | config_host_data.set('CONFIG_BRLAPI', brlapi.found()) |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 1427 | config_host_data.set('CONFIG_COCOA', cocoa.found()) |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 1428 | config_host_data.set('CONFIG_FUZZ', get_option('fuzzing')) |
Paolo Bonzini | af2bb99 | 2021-10-07 15:08:17 +0200 | [diff] [blame] | 1429 | config_host_data.set('CONFIG_GCOV', get_option('b_coverage')) |
Paolo Bonzini | f01496a | 2020-09-16 17:54:14 +0200 | [diff] [blame] | 1430 | config_host_data.set('CONFIG_LIBUDEV', libudev.found()) |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1431 | config_host_data.set('CONFIG_LZO', lzo.found()) |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 1432 | config_host_data.set('CONFIG_MPATH', mpathpersist.found()) |
| 1433 | config_host_data.set('CONFIG_MPATH_NEW_API', mpathpersist_new_api) |
Paolo Bonzini | f9cd86f | 2020-11-17 12:43:15 +0100 | [diff] [blame] | 1434 | config_host_data.set('CONFIG_CURL', curl.found()) |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 1435 | config_host_data.set('CONFIG_CURSES', curses.found()) |
Thomas Huth | 8bc5184 | 2021-07-13 13:09:02 +0200 | [diff] [blame] | 1436 | config_host_data.set('CONFIG_GBM', gbm.found()) |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 1437 | config_host_data.set('CONFIG_GLUSTERFS', glusterfs.found()) |
| 1438 | if glusterfs.found() |
| 1439 | config_host_data.set('CONFIG_GLUSTERFS_XLATOR_OPT', glusterfs.version().version_compare('>=4')) |
| 1440 | config_host_data.set('CONFIG_GLUSTERFS_DISCARD', glusterfs.version().version_compare('>=5')) |
| 1441 | config_host_data.set('CONFIG_GLUSTERFS_FALLOCATE', glusterfs.version().version_compare('>=6')) |
| 1442 | config_host_data.set('CONFIG_GLUSTERFS_ZEROFILL', glusterfs.version().version_compare('>=6')) |
| 1443 | config_host_data.set('CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT', glusterfs_ftruncate_has_stat) |
| 1444 | config_host_data.set('CONFIG_GLUSTERFS_IOCB_HAS_STAT', glusterfs_iocb_has_stat) |
| 1445 | endif |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1446 | config_host_data.set('CONFIG_GTK', gtk.found()) |
Paolo Bonzini | c23d7b4 | 2021-06-03 11:31:35 +0200 | [diff] [blame] | 1447 | config_host_data.set('CONFIG_VTE', vte.found()) |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 1448 | config_host_data.set('CONFIG_LIBATTR', have_old_libattr) |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 1449 | config_host_data.set('CONFIG_LIBCAP_NG', libcap_ng.found()) |
Andrew Melnychenko | 46627f4 | 2021-05-14 14:48:32 +0300 | [diff] [blame] | 1450 | config_host_data.set('CONFIG_EBPF', libbpf.found()) |
Paolo Bonzini | 63a7f85 | 2021-07-08 13:50:06 +0200 | [diff] [blame] | 1451 | config_host_data.set('CONFIG_LIBDAXCTL', libdaxctl.found()) |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1452 | config_host_data.set('CONFIG_LIBISCSI', libiscsi.found()) |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1453 | config_host_data.set('CONFIG_LIBNFS', libnfs.found()) |
Paolo Bonzini | ff66f3e | 2021-10-07 15:08:20 +0200 | [diff] [blame] | 1454 | config_host_data.set('CONFIG_LINUX_AIO', libaio.found()) |
Paolo Bonzini | 63a7f85 | 2021-07-08 13:50:06 +0200 | [diff] [blame] | 1455 | config_host_data.set('CONFIG_LINUX_IO_URING', linux_io_uring.found()) |
| 1456 | config_host_data.set('CONFIG_LIBPMEM', libpmem.found()) |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1457 | config_host_data.set('CONFIG_RBD', rbd.found()) |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 1458 | config_host_data.set('CONFIG_SDL', sdl.found()) |
| 1459 | config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found()) |
Paolo Bonzini | 90835c2 | 2020-11-17 14:22:24 +0100 | [diff] [blame] | 1460 | config_host_data.set('CONFIG_SECCOMP', seccomp.found()) |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1461 | config_host_data.set('CONFIG_SNAPPY', snappy.found()) |
Paolo Bonzini | 90540f3 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1462 | config_host_data.set('CONFIG_USB_LIBUSB', libusb.found()) |
Paolo Bonzini | e172399 | 2021-10-07 15:08:21 +0200 | [diff] [blame^] | 1463 | config_host_data.set('CONFIG_VDE', vde.found()) |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 1464 | 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] | 1465 | config_host_data.set('CONFIG_VNC', vnc.found()) |
| 1466 | config_host_data.set('CONFIG_VNC_JPEG', jpeg.found()) |
| 1467 | config_host_data.set('CONFIG_VNC_PNG', png.found()) |
| 1468 | config_host_data.set('CONFIG_VNC_SASL', sasl.found()) |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 1469 | config_host_data.set('CONFIG_VIRTFS', have_virtfs) |
Paolo Bonzini | 63a7f85 | 2021-07-08 13:50:06 +0200 | [diff] [blame] | 1470 | config_host_data.set('CONFIG_VTE', vte.found()) |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 1471 | config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found()) |
Marc-André Lureau | af04e89 | 2020-08-28 15:07:25 +0400 | [diff] [blame] | 1472 | config_host_data.set('CONFIG_KEYUTILS', keyutils.found()) |
Marc-André Lureau | 3909def | 2020-08-28 15:07:33 +0400 | [diff] [blame] | 1473 | config_host_data.set('CONFIG_GETTID', has_gettid) |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1474 | config_host_data.set('CONFIG_GNUTLS', gnutls.found()) |
Daniel P. Berrangé | cc4c7c7 | 2021-06-30 17:20:02 +0100 | [diff] [blame] | 1475 | config_host_data.set('CONFIG_GNUTLS_CRYPTO', gnutls_crypto.found()) |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 1476 | config_host_data.set('CONFIG_GCRYPT', gcrypt.found()) |
| 1477 | config_host_data.set('CONFIG_NETTLE', nettle.found()) |
| 1478 | config_host_data.set('CONFIG_QEMU_PRIVATE_XTS', xts == 'private') |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 1479 | config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim) |
Max Reitz | 84e319a | 2020-11-02 17:18:55 +0100 | [diff] [blame] | 1480 | config_host_data.set('CONFIG_STATX', has_statx) |
Paolo Bonzini | b1def33 | 2020-11-17 13:37:39 +0100 | [diff] [blame] | 1481 | config_host_data.set('CONFIG_ZSTD', zstd.found()) |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 1482 | config_host_data.set('CONFIG_FUSE', fuse.found()) |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 1483 | config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found()) |
Paolo Bonzini | 9d71037 | 2021-01-07 13:54:22 +0100 | [diff] [blame] | 1484 | config_host_data.set('CONFIG_X11', x11.found()) |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1485 | config_host_data.set('CONFIG_CFI', get_option('cfi')) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1486 | config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version())) |
| 1487 | config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0]) |
| 1488 | config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1]) |
| 1489 | config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2]) |
| 1490 | |
Paolo Bonzini | a630508 | 2021-10-07 15:08:15 +0200 | [diff] [blame] | 1491 | config_host_data.set_quoted('CONFIG_HOST_DSOSUF', host_dsosuf) |
Paolo Bonzini | 69d8de7 | 2021-06-03 11:56:11 +0200 | [diff] [blame] | 1492 | config_host_data.set('HAVE_HOST_BLOCK_DEVICE', have_host_block_device) |
Paolo Bonzini | 269506d | 2021-10-07 15:08:16 +0200 | [diff] [blame] | 1493 | config_host_data.set('HOST_WORDS_BIGENDIAN', host_machine.endian() == 'big') |
Paolo Bonzini | 69d8de7 | 2021-06-03 11:56:11 +0200 | [diff] [blame] | 1494 | |
| 1495 | # has_header |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1496 | config_host_data.set('CONFIG_EPOLL', cc.has_header('sys/epoll.h')) |
Paolo Bonzini | d47a8b3 | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1497 | config_host_data.set('CONFIG_LINUX_MAGIC_H', cc.has_header('linux/magic.h')) |
| 1498 | config_host_data.set('CONFIG_VALGRIND_H', cc.has_header('valgrind/valgrind.h')) |
Thomas Huth | 48f670e | 2020-11-18 18:10:52 +0100 | [diff] [blame] | 1499 | 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] | 1500 | 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] | 1501 | config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h')) |
Paolo Bonzini | 69d8de7 | 2021-06-03 11:56:11 +0200 | [diff] [blame] | 1502 | config_host_data.set('HAVE_SYS_DISK_H', cc.has_header('sys/disk.h')) |
Thomas Huth | ded5d78 | 2020-11-14 11:10:11 +0100 | [diff] [blame] | 1503 | 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] | 1504 | config_host_data.set('HAVE_SYS_KCOV_H', cc.has_header('sys/kcov.h')) |
Thomas Huth | ded5d78 | 2020-11-14 11:10:11 +0100 | [diff] [blame] | 1505 | |
Paolo Bonzini | 69d8de7 | 2021-06-03 11:56:11 +0200 | [diff] [blame] | 1506 | # has_function |
Paolo Bonzini | a620fbe | 2021-06-03 13:04:47 +0200 | [diff] [blame] | 1507 | config_host_data.set('CONFIG_ACCEPT4', cc.has_function('accept4')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1508 | config_host_data.set('CONFIG_CLOCK_ADJTIME', cc.has_function('clock_adjtime')) |
| 1509 | config_host_data.set('CONFIG_DUP3', cc.has_function('dup3')) |
| 1510 | config_host_data.set('CONFIG_FALLOCATE', cc.has_function('fallocate')) |
| 1511 | config_host_data.set('CONFIG_POSIX_FALLOCATE', cc.has_function('posix_fallocate')) |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1512 | config_host_data.set('CONFIG_POSIX_MEMALIGN', cc.has_function('posix_memalign')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1513 | config_host_data.set('CONFIG_PPOLL', cc.has_function('ppoll')) |
Peter Maydell | 2b9f74e | 2021-01-26 15:58:46 +0000 | [diff] [blame] | 1514 | config_host_data.set('CONFIG_PREADV', cc.has_function('preadv', prefix: '#include <sys/uio.h>')) |
Paolo Bonzini | ed3b3f1 | 2021-06-03 12:14:48 +0200 | [diff] [blame] | 1515 | config_host_data.set('CONFIG_SEM_TIMEDWAIT', cc.has_function('sem_timedwait', dependencies: threads)) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1516 | config_host_data.set('CONFIG_SENDFILE', cc.has_function('sendfile')) |
| 1517 | config_host_data.set('CONFIG_SETNS', cc.has_function('setns') and cc.has_function('unshare')) |
| 1518 | config_host_data.set('CONFIG_SYNCFS', cc.has_function('syncfs')) |
| 1519 | config_host_data.set('CONFIG_SYNC_FILE_RANGE', cc.has_function('sync_file_range')) |
| 1520 | config_host_data.set('CONFIG_TIMERFD', cc.has_function('timerfd_create')) |
Paolo Bonzini | be7e89f | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1521 | config_host_data.set('HAVE_COPY_FILE_RANGE', cc.has_function('copy_file_range')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1522 | config_host_data.set('HAVE_OPENPTY', cc.has_function('openpty', dependencies: util)) |
Paolo Bonzini | ed3b3f1 | 2021-06-03 12:14:48 +0200 | [diff] [blame] | 1523 | config_host_data.set('HAVE_STRCHRNUL', cc.has_function('strchrnul')) |
Paolo Bonzini | 69d8de7 | 2021-06-03 11:56:11 +0200 | [diff] [blame] | 1524 | config_host_data.set('HAVE_SYSTEM_FUNCTION', cc.has_function('system', prefix: '#include <stdlib.h>')) |
Peter Maydell | 2b9f74e | 2021-01-26 15:58:46 +0000 | [diff] [blame] | 1525 | |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1526 | # has_header_symbol |
| 1527 | config_host_data.set('CONFIG_BYTESWAP_H', |
| 1528 | cc.has_header_symbol('byteswap.h', 'bswap_32')) |
| 1529 | config_host_data.set('CONFIG_EPOLL_CREATE1', |
| 1530 | cc.has_header_symbol('sys/epoll.h', 'epoll_create1')) |
Paolo Bonzini | d47a8b3 | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1531 | config_host_data.set('CONFIG_HAS_ENVIRON', |
| 1532 | cc.has_header_symbol('unistd.h', 'environ', prefix: gnu_source_prefix)) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1533 | config_host_data.set('CONFIG_FALLOCATE_PUNCH_HOLE', |
| 1534 | cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_PUNCH_HOLE') and |
| 1535 | cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_KEEP_SIZE')) |
| 1536 | config_host_data.set('CONFIG_FALLOCATE_ZERO_RANGE', |
| 1537 | cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_ZERO_RANGE')) |
| 1538 | config_host_data.set('CONFIG_FIEMAP', |
| 1539 | cc.has_header('linux/fiemap.h') and |
| 1540 | cc.has_header_symbol('linux/fs.h', 'FS_IOC_FIEMAP')) |
Paolo Bonzini | be7e89f | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1541 | config_host_data.set('CONFIG_GETRANDOM', |
| 1542 | cc.has_function('getrandom') and |
| 1543 | cc.has_header_symbol('sys/random.h', 'GRND_NONBLOCK')) |
Paolo Bonzini | a620fbe | 2021-06-03 13:04:47 +0200 | [diff] [blame] | 1544 | config_host_data.set('CONFIG_INOTIFY', |
| 1545 | cc.has_header_symbol('sys/inotify.h', 'inotify_init')) |
| 1546 | config_host_data.set('CONFIG_INOTIFY1', |
| 1547 | cc.has_header_symbol('sys/inotify.h', 'inotify_init1')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1548 | config_host_data.set('CONFIG_MACHINE_BSWAP_H', |
| 1549 | cc.has_header_symbol('machine/bswap.h', 'bswap32', |
| 1550 | prefix: '''#include <sys/endian.h> |
| 1551 | #include <sys/types.h>''')) |
| 1552 | config_host_data.set('CONFIG_PRCTL_PR_SET_TIMERSLACK', |
| 1553 | cc.has_header_symbol('sys/prctl.h', 'PR_SET_TIMERSLACK')) |
Paolo Bonzini | be7e89f | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1554 | config_host_data.set('CONFIG_RTNETLINK', |
| 1555 | cc.has_header_symbol('linux/rtnetlink.h', 'IFLA_PROTO_DOWN')) |
| 1556 | config_host_data.set('CONFIG_SYSMACROS', |
| 1557 | cc.has_header_symbol('sys/sysmacros.h', 'makedev')) |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1558 | config_host_data.set('HAVE_OPTRESET', |
| 1559 | cc.has_header_symbol('getopt.h', 'optreset')) |
Paolo Bonzini | be7e89f | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1560 | config_host_data.set('HAVE_UTMPX', |
| 1561 | cc.has_header_symbol('utmpx.h', 'struct utmpx')) |
Marc-André Lureau | 653163f | 2021-09-07 16:19:13 +0400 | [diff] [blame] | 1562 | config_host_data.set('HAVE_IPPROTO_MPTCP', |
| 1563 | cc.has_header_symbol('netinet/in.h', 'IPPROTO_MPTCP')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1564 | |
| 1565 | # has_member |
| 1566 | config_host_data.set('HAVE_SIGEV_NOTIFY_THREAD_ID', |
| 1567 | cc.has_member('struct sigevent', 'sigev_notify_thread_id', |
| 1568 | prefix: '#include <signal.h>')) |
Paolo Bonzini | ed3b3f1 | 2021-06-03 12:14:48 +0200 | [diff] [blame] | 1569 | config_host_data.set('HAVE_STRUCT_STAT_ST_ATIM', |
| 1570 | cc.has_member('struct stat', 'st_atim', |
| 1571 | prefix: '#include <sys/stat.h>')) |
Paolo Bonzini | e66420a | 2021-06-03 12:10:05 +0200 | [diff] [blame] | 1572 | |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1573 | config_host_data.set('CONFIG_EVENTFD', cc.links(''' |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1574 | #include <sys/eventfd.h> |
| 1575 | int main(void) { return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1576 | config_host_data.set('CONFIG_FDATASYNC', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1577 | #include <unistd.h> |
| 1578 | int main(void) { |
| 1579 | #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 |
| 1580 | return fdatasync(0); |
| 1581 | #else |
| 1582 | #error Not supported |
| 1583 | #endif |
| 1584 | }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1585 | config_host_data.set('CONFIG_MADVISE', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1586 | #include <sys/types.h> |
| 1587 | #include <sys/mman.h> |
| 1588 | #include <stddef.h> |
| 1589 | int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1590 | config_host_data.set('CONFIG_MEMFD', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1591 | #include <sys/mman.h> |
| 1592 | int main(void) { return memfd_create("foo", MFD_ALLOW_SEALING); }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1593 | config_host_data.set('CONFIG_OPEN_BY_HANDLE', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | d47a8b3 | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1594 | #include <fcntl.h> |
| 1595 | #if !defined(AT_EMPTY_PATH) |
| 1596 | # error missing definition |
| 1597 | #else |
| 1598 | int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } |
| 1599 | #endif''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1600 | config_host_data.set('CONFIG_PIPE2', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | a620fbe | 2021-06-03 13:04:47 +0200 | [diff] [blame] | 1601 | #include <unistd.h> |
| 1602 | #include <fcntl.h> |
| 1603 | |
| 1604 | int main(void) |
| 1605 | { |
| 1606 | int pipefd[2]; |
| 1607 | return pipe2(pipefd, O_CLOEXEC); |
| 1608 | }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1609 | config_host_data.set('CONFIG_POSIX_MADVISE', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1610 | #include <sys/mman.h> |
| 1611 | #include <stddef.h> |
| 1612 | int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }''')) |
Paolo Bonzini | 10f6b23 | 2021-10-07 15:08:19 +0200 | [diff] [blame] | 1613 | |
| 1614 | config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_W_TID', cc.links(''' |
| 1615 | #include <pthread.h> |
| 1616 | |
| 1617 | static void *f(void *p) { return NULL; } |
| 1618 | int main(void) |
| 1619 | { |
| 1620 | pthread_t thread; |
| 1621 | pthread_create(&thread, 0, f, 0); |
| 1622 | pthread_setname_np(thread, "QEMU"); |
| 1623 | return 0; |
| 1624 | }''', dependencies: threads)) |
| 1625 | config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_WO_TID', cc.links(''' |
| 1626 | #include <pthread.h> |
| 1627 | |
| 1628 | static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; } |
| 1629 | int main(void) |
| 1630 | { |
| 1631 | pthread_t thread; |
| 1632 | pthread_create(&thread, 0, f, 0); |
| 1633 | return 0; |
| 1634 | }''', dependencies: threads)) |
| 1635 | |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1636 | config_host_data.set('CONFIG_SIGNALFD', cc.links(gnu_source_prefix + ''' |
Kacper Słomiński | 6bd17dc | 2021-09-05 03:16:22 +0200 | [diff] [blame] | 1637 | #include <sys/signalfd.h> |
| 1638 | #include <stddef.h> |
| 1639 | int main(void) { return signalfd(-1, NULL, SFD_CLOEXEC); }''')) |
Paolo Bonzini | 904ad5e | 2021-07-07 16:35:26 +0200 | [diff] [blame] | 1640 | config_host_data.set('CONFIG_SPLICE', cc.links(gnu_source_prefix + ''' |
Paolo Bonzini | a620fbe | 2021-06-03 13:04:47 +0200 | [diff] [blame] | 1641 | #include <unistd.h> |
| 1642 | #include <fcntl.h> |
| 1643 | #include <limits.h> |
| 1644 | |
| 1645 | int main(void) |
| 1646 | { |
| 1647 | int len, fd = 0; |
| 1648 | len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); |
| 1649 | splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); |
| 1650 | return 0; |
| 1651 | }''')) |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1652 | |
Paolo Bonzini | 96a63ae | 2021-10-07 15:08:18 +0200 | [diff] [blame] | 1653 | config_host_data.set('HAVE_MLOCKALL', cc.links(gnu_source_prefix + ''' |
| 1654 | #include <sys/mman.h> |
| 1655 | int main(int argc, char *argv[]) { |
| 1656 | return mlockall(MCL_FUTURE); |
| 1657 | }''')) |
| 1658 | |
| 1659 | # Work around a system header bug with some kernel/XFS header |
| 1660 | # versions where they both try to define 'struct fsxattr': |
| 1661 | # xfs headers will not try to redefine structs from linux headers |
| 1662 | # if this macro is set. |
| 1663 | config_host_data.set('HAVE_FSXATTR', cc.links(''' |
| 1664 | #include <linux/fs.h>' |
| 1665 | struct fsxattr foo; |
| 1666 | int main(void) { |
| 1667 | return 0; |
| 1668 | }''')) |
| 1669 | |
Paolo Bonzini | e46bd55 | 2021-06-03 11:57:04 +0200 | [diff] [blame] | 1670 | # Some versions of Mac OS X incorrectly define SIZE_MAX |
| 1671 | config_host_data.set('HAVE_BROKEN_SIZE_MAX', not cc.compiles(''' |
| 1672 | #include <stdint.h> |
| 1673 | #include <stdio.h> |
| 1674 | int main(int argc, char *argv[]) { |
| 1675 | return printf("%zu", SIZE_MAX); |
| 1676 | }''', args: ['-Werror'])) |
| 1677 | |
Paolo Bonzini | a76a1f6 | 2021-10-13 10:04:24 +0200 | [diff] [blame] | 1678 | ignored = ['CONFIG_QEMU_INTERP_PREFIX', # actually per-target |
| 1679 | 'HAVE_GDB_BIN'] |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 1680 | arrays = ['CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST'] |
Paolo Bonzini | a630508 | 2021-10-07 15:08:15 +0200 | [diff] [blame] | 1681 | strings = ['CONFIG_IASL'] |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1682 | foreach k, v: config_host |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1683 | if ignored.contains(k) |
| 1684 | # do nothing |
| 1685 | elif arrays.contains(k) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1686 | if v != '' |
| 1687 | v = '"' + '", "'.join(v.split()) + '", ' |
| 1688 | endif |
| 1689 | config_host_data.set(k, v) |
| 1690 | elif k == 'ARCH' |
| 1691 | config_host_data.set('HOST_' + v.to_upper(), 1) |
| 1692 | elif strings.contains(k) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1693 | config_host_data.set_quoted(k, v) |
Paolo Bonzini | 96a63ae | 2021-10-07 15:08:18 +0200 | [diff] [blame] | 1694 | elif k.startswith('CONFIG_') |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1695 | config_host_data.set(k, v == 'y' ? 1 : v) |
| 1696 | endif |
| 1697 | endforeach |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1698 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1699 | ######################## |
| 1700 | # Target configuration # |
| 1701 | ######################## |
| 1702 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1703 | minikconf = find_program('scripts/minikconf.py') |
Paolo Bonzini | 05512f5 | 2020-09-16 15:31:11 -0400 | [diff] [blame] | 1704 | config_all = {} |
Paolo Bonzini | a98006b | 2020-09-01 05:32:23 -0400 | [diff] [blame] | 1705 | config_all_devices = {} |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1706 | config_all_disas = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1707 | config_devices_mak_list = [] |
| 1708 | config_devices_h = {} |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1709 | config_target_h = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1710 | config_target_mak = {} |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1711 | |
| 1712 | disassemblers = { |
| 1713 | 'alpha' : ['CONFIG_ALPHA_DIS'], |
| 1714 | 'arm' : ['CONFIG_ARM_DIS'], |
| 1715 | 'avr' : ['CONFIG_AVR_DIS'], |
| 1716 | 'cris' : ['CONFIG_CRIS_DIS'], |
Taylor Simpson | 3e7a84e | 2021-02-07 23:46:24 -0600 | [diff] [blame] | 1717 | 'hexagon' : ['CONFIG_HEXAGON_DIS'], |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1718 | 'hppa' : ['CONFIG_HPPA_DIS'], |
| 1719 | 'i386' : ['CONFIG_I386_DIS'], |
| 1720 | 'x86_64' : ['CONFIG_I386_DIS'], |
| 1721 | 'x32' : ['CONFIG_I386_DIS'], |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1722 | 'm68k' : ['CONFIG_M68K_DIS'], |
| 1723 | 'microblaze' : ['CONFIG_MICROBLAZE_DIS'], |
| 1724 | 'mips' : ['CONFIG_MIPS_DIS'], |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1725 | 'nios2' : ['CONFIG_NIOS2_DIS'], |
| 1726 | 'or1k' : ['CONFIG_OPENRISC_DIS'], |
| 1727 | 'ppc' : ['CONFIG_PPC_DIS'], |
| 1728 | 'riscv' : ['CONFIG_RISCV_DIS'], |
| 1729 | 'rx' : ['CONFIG_RX_DIS'], |
| 1730 | 's390' : ['CONFIG_S390_DIS'], |
| 1731 | 'sh4' : ['CONFIG_SH4_DIS'], |
| 1732 | 'sparc' : ['CONFIG_SPARC_DIS'], |
| 1733 | 'xtensa' : ['CONFIG_XTENSA_DIS'], |
| 1734 | } |
| 1735 | if link_language == 'cpp' |
| 1736 | disassemblers += { |
| 1737 | 'aarch64' : [ 'CONFIG_ARM_A64_DIS'], |
| 1738 | 'arm' : [ 'CONFIG_ARM_DIS', 'CONFIG_ARM_A64_DIS'], |
| 1739 | 'mips' : [ 'CONFIG_MIPS_DIS', 'CONFIG_NANOMIPS_DIS'], |
| 1740 | } |
| 1741 | endif |
| 1742 | |
Paolo Bonzini | e1fbd2c | 2021-06-03 12:02:00 +0200 | [diff] [blame] | 1743 | have_ivshmem = config_host_data.get('CONFIG_EVENTFD') |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1744 | host_kconfig = \ |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 1745 | (get_option('fuzzing') ? ['CONFIG_FUZZ=y'] : []) + \ |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1746 | ('CONFIG_TPM' in config_host ? ['CONFIG_TPM=y'] : []) + \ |
| 1747 | ('CONFIG_SPICE' in config_host ? ['CONFIG_SPICE=y'] : []) + \ |
Paolo Bonzini | ccd250a | 2021-06-03 12:50:17 +0200 | [diff] [blame] | 1748 | (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \ |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1749 | ('CONFIG_OPENGL' in config_host ? ['CONFIG_OPENGL=y'] : []) + \ |
Paolo Bonzini | 9d71037 | 2021-01-07 13:54:22 +0100 | [diff] [blame] | 1750 | (x11.found() ? ['CONFIG_X11=y'] : []) + \ |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1751 | ('CONFIG_VHOST_USER' in config_host ? ['CONFIG_VHOST_USER=y'] : []) + \ |
| 1752 | ('CONFIG_VHOST_VDPA' in config_host ? ['CONFIG_VHOST_VDPA=y'] : []) + \ |
| 1753 | ('CONFIG_VHOST_KERNEL' in config_host ? ['CONFIG_VHOST_KERNEL=y'] : []) + \ |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 1754 | (have_virtfs ? ['CONFIG_VIRTFS=y'] : []) + \ |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1755 | ('CONFIG_LINUX' in config_host ? ['CONFIG_LINUX=y'] : []) + \ |
Jagannathan Raman | 3090de6 | 2021-01-29 11:46:05 -0500 | [diff] [blame] | 1756 | ('CONFIG_PVRDMA' in config_host ? ['CONFIG_PVRDMA=y'] : []) + \ |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 1757 | (multiprocess_allowed ? ['CONFIG_MULTIPROCESS_ALLOWED=y'] : []) |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1758 | |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 1759 | ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ] |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1760 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1761 | default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host |
| 1762 | actual_target_dirs = [] |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1763 | fdt_required = [] |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1764 | foreach target : target_dirs |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1765 | config_target = { 'TARGET_NAME': target.split('-')[0] } |
| 1766 | if target.endswith('linux-user') |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1767 | if targetos != 'linux' |
| 1768 | if default_targets |
| 1769 | continue |
| 1770 | endif |
| 1771 | error('Target @0@ is only available on a Linux host'.format(target)) |
| 1772 | endif |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1773 | config_target += { 'CONFIG_LINUX_USER': 'y' } |
| 1774 | elif target.endswith('bsd-user') |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1775 | if 'CONFIG_BSD' not in config_host |
| 1776 | if default_targets |
| 1777 | continue |
| 1778 | endif |
| 1779 | error('Target @0@ is only available on a BSD host'.format(target)) |
| 1780 | endif |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1781 | config_target += { 'CONFIG_BSD_USER': 'y' } |
| 1782 | elif target.endswith('softmmu') |
| 1783 | config_target += { 'CONFIG_SOFTMMU': 'y' } |
| 1784 | endif |
| 1785 | if target.endswith('-user') |
| 1786 | config_target += { |
| 1787 | 'CONFIG_USER_ONLY': 'y', |
| 1788 | 'CONFIG_QEMU_INTERP_PREFIX': |
| 1789 | config_host['CONFIG_QEMU_INTERP_PREFIX'].format(config_target['TARGET_NAME']) |
| 1790 | } |
| 1791 | endif |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1792 | |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1793 | accel_kconfig = [] |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 1794 | foreach sym: accelerators |
| 1795 | if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, []) |
| 1796 | config_target += { sym: 'y' } |
| 1797 | config_all += { sym: 'y' } |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 1798 | if sym == 'CONFIG_TCG' and tcg_arch == 'tci' |
| 1799 | config_target += { 'CONFIG_TCG_INTERPRETER': 'y' } |
| 1800 | elif sym == 'CONFIG_XEN' and have_xen_pci_passthrough |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 1801 | config_target += { 'CONFIG_XEN_PCI_PASSTHROUGH': 'y' } |
| 1802 | endif |
Gerd Hoffmann | dae0ec1 | 2021-06-24 12:38:31 +0200 | [diff] [blame] | 1803 | if target in modular_tcg |
| 1804 | config_target += { 'CONFIG_TCG_MODULAR': 'y' } |
| 1805 | else |
| 1806 | config_target += { 'CONFIG_TCG_BUILTIN': 'y' } |
| 1807 | endif |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1808 | accel_kconfig += [ sym + '=y' ] |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 1809 | endif |
| 1810 | endforeach |
Paolo Bonzini | 0a18911 | 2020-11-17 14:58:32 +0100 | [diff] [blame] | 1811 | if accel_kconfig.length() == 0 |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1812 | if default_targets |
| 1813 | continue |
| 1814 | endif |
| 1815 | error('No accelerator available for target @0@'.format(target)) |
| 1816 | endif |
Paolo Bonzini | 8a19980 | 2020-09-18 05:37:01 -0400 | [diff] [blame] | 1817 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1818 | actual_target_dirs += target |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 1819 | config_target += keyval.load('configs/targets' / target + '.mak') |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 1820 | config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' } |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1821 | |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1822 | if 'TARGET_NEED_FDT' in config_target |
| 1823 | fdt_required += target |
| 1824 | endif |
| 1825 | |
Paolo Bonzini | fa73168 | 2020-09-21 05:19:07 -0400 | [diff] [blame] | 1826 | # Add default keys |
| 1827 | if 'TARGET_BASE_ARCH' not in config_target |
| 1828 | config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']} |
| 1829 | endif |
| 1830 | if 'TARGET_ABI_DIR' not in config_target |
| 1831 | config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']} |
| 1832 | endif |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1833 | |
Paolo Bonzini | ca0fc78 | 2020-09-01 06:04:28 -0400 | [diff] [blame] | 1834 | foreach k, v: disassemblers |
| 1835 | if config_host['ARCH'].startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k) |
| 1836 | foreach sym: v |
| 1837 | config_target += { sym: 'y' } |
| 1838 | config_all_disas += { sym: 'y' } |
| 1839 | endforeach |
| 1840 | endif |
| 1841 | endforeach |
| 1842 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1843 | config_target_data = configuration_data() |
| 1844 | foreach k, v: config_target |
| 1845 | if not k.startswith('TARGET_') and not k.startswith('CONFIG_') |
| 1846 | # do nothing |
| 1847 | elif ignored.contains(k) |
| 1848 | # do nothing |
| 1849 | elif k == 'TARGET_BASE_ARCH' |
Paolo Bonzini | a9a7490 | 2020-09-21 05:11:01 -0400 | [diff] [blame] | 1850 | # Note that TARGET_BASE_ARCH ends up in config-target.h but it is |
| 1851 | # not used to select files from sourcesets. |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1852 | config_target_data.set('TARGET_' + v.to_upper(), 1) |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 1853 | elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX' |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1854 | config_target_data.set_quoted(k, v) |
| 1855 | elif v == 'y' |
| 1856 | config_target_data.set(k, 1) |
| 1857 | else |
| 1858 | config_target_data.set(k, v) |
| 1859 | endif |
| 1860 | endforeach |
Peter Maydell | cb2c553 | 2021-07-30 11:59:43 +0100 | [diff] [blame] | 1861 | config_target_data.set('QEMU_ARCH', |
| 1862 | 'QEMU_ARCH_' + config_target['TARGET_BASE_ARCH'].to_upper()) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1863 | config_target_h += {target: configure_file(output: target + '-config-target.h', |
| 1864 | configuration: config_target_data)} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1865 | |
| 1866 | if target.endswith('-softmmu') |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 1867 | config_input = meson.get_external_property(target, 'default') |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1868 | config_devices_mak = target + '-config-devices.mak' |
| 1869 | config_devices_mak = configure_file( |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 1870 | input: ['configs/devices' / target / config_input + '.mak', 'Kconfig'], |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1871 | output: config_devices_mak, |
| 1872 | depfile: config_devices_mak + '.d', |
| 1873 | capture: true, |
Paolo Bonzini | 7bc3ca7 | 2020-11-20 08:38:22 +0100 | [diff] [blame] | 1874 | command: [minikconf, |
| 1875 | get_option('default_devices') ? '--defconfig' : '--allnoconfig', |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1876 | config_devices_mak, '@DEPFILE@', '@INPUT@', |
Philippe Mathieu-Daudé | f4063f9 | 2021-07-07 14:17:40 +0100 | [diff] [blame] | 1877 | host_kconfig, accel_kconfig, |
| 1878 | 'CONFIG_' + config_target['TARGET_ARCH'].to_upper() + '=y']) |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1879 | |
| 1880 | config_devices_data = configuration_data() |
| 1881 | config_devices = keyval.load(config_devices_mak) |
| 1882 | foreach k, v: config_devices |
| 1883 | config_devices_data.set(k, 1) |
| 1884 | endforeach |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1885 | config_devices_mak_list += config_devices_mak |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 1886 | config_devices_h += {target: configure_file(output: target + '-config-devices.h', |
| 1887 | configuration: config_devices_data)} |
| 1888 | config_target += config_devices |
Paolo Bonzini | a98006b | 2020-09-01 05:32:23 -0400 | [diff] [blame] | 1889 | config_all_devices += config_devices |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1890 | endif |
| 1891 | config_target_mak += {target: config_target} |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1892 | endforeach |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1893 | target_dirs = actual_target_dirs |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 1894 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1895 | # This configuration is used to build files that are shared by |
| 1896 | # multiple binaries, and then extracted out of the "common" |
| 1897 | # static_library target. |
| 1898 | # |
| 1899 | # We do not use all_sources()/all_dependencies(), because it would |
| 1900 | # build literally all source files, including devices only used by |
| 1901 | # targets that are not built for this compilation. The CONFIG_ALL |
| 1902 | # pseudo symbol replaces it. |
| 1903 | |
Paolo Bonzini | 05512f5 | 2020-09-16 15:31:11 -0400 | [diff] [blame] | 1904 | config_all += config_all_devices |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 1905 | config_all += config_host |
| 1906 | config_all += config_all_disas |
| 1907 | config_all += { |
| 1908 | 'CONFIG_XEN': config_host.has_key('CONFIG_XEN_BACKEND'), |
| 1909 | 'CONFIG_SOFTMMU': have_system, |
| 1910 | 'CONFIG_USER_ONLY': have_user, |
| 1911 | 'CONFIG_ALL': true, |
| 1912 | } |
| 1913 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 1914 | ############## |
| 1915 | # Submodules # |
| 1916 | ############## |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1917 | |
| 1918 | capstone = not_found |
| 1919 | capstone_opt = get_option('capstone') |
| 1920 | if capstone_opt in ['enabled', 'auto', 'system'] |
| 1921 | have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile') |
Richard Henderson | bcf3686 | 2020-09-21 09:46:16 -0700 | [diff] [blame] | 1922 | capstone = dependency('capstone', version: '>=4.0', |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 1923 | kwargs: static_kwargs, method: 'pkg-config', |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1924 | required: capstone_opt == 'system' or |
| 1925 | capstone_opt == 'enabled' and not have_internal) |
Daniel P. Berrangé | 8f4aea7 | 2021-07-09 15:29:31 +0100 | [diff] [blame] | 1926 | |
| 1927 | # Some versions of capstone have broken pkg-config file |
| 1928 | # that reports a wrong -I path, causing the #include to |
| 1929 | # fail later. If the system has such a broken version |
| 1930 | # do not use it. |
| 1931 | if capstone.found() and not cc.compiles('#include <capstone.h>', |
| 1932 | dependencies: [capstone]) |
| 1933 | capstone = not_found |
| 1934 | if capstone_opt == 'system' |
| 1935 | error('system capstone requested, it does not appear to work') |
| 1936 | endif |
| 1937 | endif |
| 1938 | |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1939 | if capstone.found() |
| 1940 | capstone_opt = 'system' |
| 1941 | elif have_internal |
| 1942 | capstone_opt = 'internal' |
| 1943 | else |
| 1944 | capstone_opt = 'disabled' |
| 1945 | endif |
| 1946 | endif |
| 1947 | if capstone_opt == 'internal' |
| 1948 | capstone_data = configuration_data() |
| 1949 | capstone_data.set('CAPSTONE_USE_SYS_DYN_MEM', '1') |
| 1950 | |
| 1951 | capstone_files = files( |
| 1952 | 'capstone/cs.c', |
| 1953 | 'capstone/MCInst.c', |
| 1954 | 'capstone/MCInstrDesc.c', |
| 1955 | 'capstone/MCRegisterInfo.c', |
| 1956 | 'capstone/SStream.c', |
| 1957 | 'capstone/utils.c' |
| 1958 | ) |
| 1959 | |
| 1960 | if 'CONFIG_ARM_DIS' in config_all_disas |
| 1961 | capstone_data.set('CAPSTONE_HAS_ARM', '1') |
| 1962 | capstone_files += files( |
| 1963 | 'capstone/arch/ARM/ARMDisassembler.c', |
| 1964 | 'capstone/arch/ARM/ARMInstPrinter.c', |
| 1965 | 'capstone/arch/ARM/ARMMapping.c', |
| 1966 | 'capstone/arch/ARM/ARMModule.c' |
| 1967 | ) |
| 1968 | endif |
| 1969 | |
| 1970 | # FIXME: This config entry currently depends on a c++ compiler. |
| 1971 | # Which is needed for building libvixl, but not for capstone. |
| 1972 | if 'CONFIG_ARM_A64_DIS' in config_all_disas |
| 1973 | capstone_data.set('CAPSTONE_HAS_ARM64', '1') |
| 1974 | capstone_files += files( |
| 1975 | 'capstone/arch/AArch64/AArch64BaseInfo.c', |
| 1976 | 'capstone/arch/AArch64/AArch64Disassembler.c', |
| 1977 | 'capstone/arch/AArch64/AArch64InstPrinter.c', |
| 1978 | 'capstone/arch/AArch64/AArch64Mapping.c', |
| 1979 | 'capstone/arch/AArch64/AArch64Module.c' |
| 1980 | ) |
| 1981 | endif |
| 1982 | |
| 1983 | if 'CONFIG_PPC_DIS' in config_all_disas |
| 1984 | capstone_data.set('CAPSTONE_HAS_POWERPC', '1') |
| 1985 | capstone_files += files( |
| 1986 | 'capstone/arch/PowerPC/PPCDisassembler.c', |
| 1987 | 'capstone/arch/PowerPC/PPCInstPrinter.c', |
| 1988 | 'capstone/arch/PowerPC/PPCMapping.c', |
| 1989 | 'capstone/arch/PowerPC/PPCModule.c' |
| 1990 | ) |
| 1991 | endif |
| 1992 | |
Richard Henderson | 3d56284 | 2020-01-04 07:24:59 +1000 | [diff] [blame] | 1993 | if 'CONFIG_S390_DIS' in config_all_disas |
| 1994 | capstone_data.set('CAPSTONE_HAS_SYSZ', '1') |
| 1995 | capstone_files += files( |
| 1996 | 'capstone/arch/SystemZ/SystemZDisassembler.c', |
| 1997 | 'capstone/arch/SystemZ/SystemZInstPrinter.c', |
| 1998 | 'capstone/arch/SystemZ/SystemZMapping.c', |
| 1999 | 'capstone/arch/SystemZ/SystemZModule.c', |
| 2000 | 'capstone/arch/SystemZ/SystemZMCTargetDesc.c' |
| 2001 | ) |
| 2002 | endif |
| 2003 | |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2004 | if 'CONFIG_I386_DIS' in config_all_disas |
| 2005 | capstone_data.set('CAPSTONE_HAS_X86', 1) |
| 2006 | capstone_files += files( |
| 2007 | 'capstone/arch/X86/X86Disassembler.c', |
| 2008 | 'capstone/arch/X86/X86DisassemblerDecoder.c', |
| 2009 | 'capstone/arch/X86/X86ATTInstPrinter.c', |
| 2010 | 'capstone/arch/X86/X86IntelInstPrinter.c', |
Richard Henderson | eef20e4 | 2020-09-14 16:02:02 -0700 | [diff] [blame] | 2011 | 'capstone/arch/X86/X86InstPrinterCommon.c', |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2012 | 'capstone/arch/X86/X86Mapping.c', |
| 2013 | 'capstone/arch/X86/X86Module.c' |
| 2014 | ) |
| 2015 | endif |
| 2016 | |
| 2017 | configure_file(output: 'capstone-defs.h', configuration: capstone_data) |
| 2018 | |
| 2019 | capstone_cargs = [ |
| 2020 | # FIXME: There does not seem to be a way to completely replace the c_args |
| 2021 | # that come from add_project_arguments() -- we can only add to them. |
| 2022 | # So: disable all warnings with a big hammer. |
| 2023 | '-Wno-error', '-w', |
| 2024 | |
| 2025 | # Include all configuration defines via a header file, which will wind up |
| 2026 | # as a dependency on the object file, and thus changes here will result |
| 2027 | # in a rebuild. |
| 2028 | '-include', 'capstone-defs.h' |
| 2029 | ] |
| 2030 | |
| 2031 | libcapstone = static_library('capstone', |
Philippe Mathieu-Daudé | 610e7e0 | 2021-01-22 21:44:33 +0100 | [diff] [blame] | 2032 | build_by_default: false, |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2033 | sources: capstone_files, |
| 2034 | c_args: capstone_cargs, |
| 2035 | include_directories: 'capstone/include') |
| 2036 | capstone = declare_dependency(link_with: libcapstone, |
Richard Henderson | eef20e4 | 2020-09-14 16:02:02 -0700 | [diff] [blame] | 2037 | include_directories: 'capstone/include/capstone') |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2038 | endif |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2039 | |
| 2040 | slirp = not_found |
| 2041 | slirp_opt = 'disabled' |
| 2042 | if have_system |
| 2043 | slirp_opt = get_option('slirp') |
| 2044 | if slirp_opt in ['enabled', 'auto', 'system'] |
| 2045 | have_internal = fs.exists(meson.current_source_dir() / 'slirp/meson.build') |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 2046 | slirp = dependency('slirp', kwargs: static_kwargs, |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2047 | method: 'pkg-config', |
| 2048 | required: slirp_opt == 'system' or |
| 2049 | slirp_opt == 'enabled' and not have_internal) |
| 2050 | if slirp.found() |
| 2051 | slirp_opt = 'system' |
| 2052 | elif have_internal |
| 2053 | slirp_opt = 'internal' |
| 2054 | else |
| 2055 | slirp_opt = 'disabled' |
| 2056 | endif |
| 2057 | endif |
| 2058 | if slirp_opt == 'internal' |
| 2059 | slirp_deps = [] |
| 2060 | if targetos == 'windows' |
| 2061 | slirp_deps = cc.find_library('iphlpapi') |
Marc-André Lureau | 43f547b | 2021-05-18 19:51:11 +0400 | [diff] [blame] | 2062 | elif targetos == 'darwin' |
| 2063 | slirp_deps = cc.find_library('resolv') |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2064 | endif |
| 2065 | slirp_conf = configuration_data() |
| 2066 | slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0]) |
| 2067 | slirp_conf.set('SLIRP_MINOR_VERSION', meson.project_version().split('.')[1]) |
| 2068 | slirp_conf.set('SLIRP_MICRO_VERSION', meson.project_version().split('.')[2]) |
| 2069 | slirp_conf.set_quoted('SLIRP_VERSION_STRING', meson.project_version()) |
| 2070 | slirp_cargs = ['-DG_LOG_DOMAIN="Slirp"'] |
| 2071 | slirp_files = [ |
| 2072 | 'slirp/src/arp_table.c', |
| 2073 | 'slirp/src/bootp.c', |
| 2074 | 'slirp/src/cksum.c', |
| 2075 | 'slirp/src/dhcpv6.c', |
| 2076 | 'slirp/src/dnssearch.c', |
| 2077 | 'slirp/src/if.c', |
| 2078 | 'slirp/src/ip6_icmp.c', |
| 2079 | 'slirp/src/ip6_input.c', |
| 2080 | 'slirp/src/ip6_output.c', |
| 2081 | 'slirp/src/ip_icmp.c', |
| 2082 | 'slirp/src/ip_input.c', |
| 2083 | 'slirp/src/ip_output.c', |
| 2084 | 'slirp/src/mbuf.c', |
| 2085 | 'slirp/src/misc.c', |
| 2086 | 'slirp/src/ncsi.c', |
| 2087 | 'slirp/src/ndp_table.c', |
| 2088 | 'slirp/src/sbuf.c', |
| 2089 | 'slirp/src/slirp.c', |
| 2090 | 'slirp/src/socket.c', |
| 2091 | 'slirp/src/state.c', |
| 2092 | 'slirp/src/stream.c', |
| 2093 | 'slirp/src/tcp_input.c', |
| 2094 | 'slirp/src/tcp_output.c', |
| 2095 | 'slirp/src/tcp_subr.c', |
| 2096 | 'slirp/src/tcp_timer.c', |
| 2097 | 'slirp/src/tftp.c', |
| 2098 | 'slirp/src/udp.c', |
| 2099 | 'slirp/src/udp6.c', |
| 2100 | 'slirp/src/util.c', |
| 2101 | 'slirp/src/version.c', |
| 2102 | 'slirp/src/vmstate.c', |
| 2103 | ] |
| 2104 | |
| 2105 | configure_file( |
| 2106 | input : 'slirp/src/libslirp-version.h.in', |
| 2107 | output : 'libslirp-version.h', |
| 2108 | configuration: slirp_conf) |
| 2109 | |
| 2110 | slirp_inc = include_directories('slirp', 'slirp/src') |
| 2111 | libslirp = static_library('slirp', |
Philippe Mathieu-Daudé | 610e7e0 | 2021-01-22 21:44:33 +0100 | [diff] [blame] | 2112 | build_by_default: false, |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2113 | sources: slirp_files, |
| 2114 | c_args: slirp_cargs, |
| 2115 | include_directories: slirp_inc) |
| 2116 | slirp = declare_dependency(link_with: libslirp, |
| 2117 | dependencies: slirp_deps, |
| 2118 | include_directories: slirp_inc) |
| 2119 | endif |
| 2120 | endif |
| 2121 | |
Daniele Buono | c715343 | 2021-03-03 21:59:38 -0500 | [diff] [blame] | 2122 | # For CFI, we need to compile slirp as a static library together with qemu. |
| 2123 | # This is because we register slirp functions as callbacks for QEMU Timers. |
| 2124 | # When using a system-wide shared libslirp, the type information for the |
| 2125 | # callback is missing and the timer call produces a false positive with CFI. |
| 2126 | # |
| 2127 | # Now that slirp_opt has been defined, check if the selected slirp is compatible |
| 2128 | # with control-flow integrity. |
| 2129 | if get_option('cfi') and slirp_opt == 'system' |
| 2130 | error('Control-Flow Integrity is not compatible with system-wide slirp.' \ |
| 2131 | + ' Please configure with --enable-slirp=git') |
| 2132 | endif |
| 2133 | |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2134 | fdt = not_found |
| 2135 | fdt_opt = get_option('fdt') |
| 2136 | if have_system |
| 2137 | if fdt_opt in ['enabled', 'auto', 'system'] |
| 2138 | have_internal = fs.exists(meson.current_source_dir() / 'dtc/libfdt/Makefile.libfdt') |
Paolo Bonzini | d7dedf4 | 2021-01-26 11:15:33 +0100 | [diff] [blame] | 2139 | fdt = cc.find_library('fdt', kwargs: static_kwargs, |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2140 | required: fdt_opt == 'system' or |
| 2141 | fdt_opt == 'enabled' and not have_internal) |
| 2142 | if fdt.found() and cc.links(''' |
| 2143 | #include <libfdt.h> |
| 2144 | #include <libfdt_env.h> |
| 2145 | int main(void) { fdt_check_full(NULL, 0); return 0; }''', |
| 2146 | dependencies: fdt) |
| 2147 | fdt_opt = 'system' |
Thomas Huth | 6c22853 | 2021-08-27 14:09:00 +0200 | [diff] [blame] | 2148 | elif fdt_opt == 'system' |
| 2149 | error('system libfdt requested, but it is too old (1.5.1 or newer required)') |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2150 | elif have_internal |
| 2151 | fdt_opt = 'internal' |
| 2152 | else |
| 2153 | fdt_opt = 'disabled' |
Thomas Huth | 87daf89 | 2021-08-27 14:08:59 +0200 | [diff] [blame] | 2154 | fdt = not_found |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2155 | endif |
| 2156 | endif |
| 2157 | if fdt_opt == 'internal' |
| 2158 | fdt_files = files( |
| 2159 | 'dtc/libfdt/fdt.c', |
| 2160 | 'dtc/libfdt/fdt_ro.c', |
| 2161 | 'dtc/libfdt/fdt_wip.c', |
| 2162 | 'dtc/libfdt/fdt_sw.c', |
| 2163 | 'dtc/libfdt/fdt_rw.c', |
| 2164 | 'dtc/libfdt/fdt_strerror.c', |
| 2165 | 'dtc/libfdt/fdt_empty_tree.c', |
| 2166 | 'dtc/libfdt/fdt_addresses.c', |
| 2167 | 'dtc/libfdt/fdt_overlay.c', |
| 2168 | 'dtc/libfdt/fdt_check.c', |
| 2169 | ) |
| 2170 | |
| 2171 | fdt_inc = include_directories('dtc/libfdt') |
| 2172 | libfdt = static_library('fdt', |
Philippe Mathieu-Daudé | 610e7e0 | 2021-01-22 21:44:33 +0100 | [diff] [blame] | 2173 | build_by_default: false, |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2174 | sources: fdt_files, |
| 2175 | include_directories: fdt_inc) |
| 2176 | fdt = declare_dependency(link_with: libfdt, |
| 2177 | include_directories: fdt_inc) |
| 2178 | endif |
| 2179 | endif |
| 2180 | if not fdt.found() and fdt_required.length() > 0 |
| 2181 | error('fdt not available but required by targets ' + ', '.join(fdt_required)) |
| 2182 | endif |
| 2183 | |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2184 | config_host_data.set('CONFIG_CAPSTONE', capstone.found()) |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2185 | config_host_data.set('CONFIG_FDT', fdt.found()) |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 2186 | config_host_data.set('CONFIG_SLIRP', slirp.found()) |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2187 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 2188 | ##################### |
| 2189 | # Generated sources # |
| 2190 | ##################### |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 2191 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 2192 | genh += configure_file(output: 'config-host.h', configuration: config_host_data) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2193 | |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 2194 | hxtool = find_program('scripts/hxtool') |
Marc-André Lureau | 650b5d5 | 2019-07-15 17:36:47 +0400 | [diff] [blame] | 2195 | shaderinclude = find_program('scripts/shaderinclude.pl') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2196 | qapi_gen = find_program('scripts/qapi-gen.py') |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2197 | qapi_gen_depends = [ meson.current_source_dir() / 'scripts/qapi/__init__.py', |
| 2198 | meson.current_source_dir() / 'scripts/qapi/commands.py', |
| 2199 | meson.current_source_dir() / 'scripts/qapi/common.py', |
| 2200 | meson.current_source_dir() / 'scripts/qapi/error.py', |
| 2201 | meson.current_source_dir() / 'scripts/qapi/events.py', |
| 2202 | meson.current_source_dir() / 'scripts/qapi/expr.py', |
| 2203 | meson.current_source_dir() / 'scripts/qapi/gen.py', |
| 2204 | meson.current_source_dir() / 'scripts/qapi/introspect.py', |
| 2205 | meson.current_source_dir() / 'scripts/qapi/parser.py', |
| 2206 | meson.current_source_dir() / 'scripts/qapi/schema.py', |
| 2207 | meson.current_source_dir() / 'scripts/qapi/source.py', |
| 2208 | meson.current_source_dir() / 'scripts/qapi/types.py', |
| 2209 | meson.current_source_dir() / 'scripts/qapi/visit.py', |
| 2210 | meson.current_source_dir() / 'scripts/qapi/common.py', |
| 2211 | meson.current_source_dir() / 'scripts/qapi-gen.py' |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2212 | ] |
| 2213 | |
| 2214 | tracetool = [ |
| 2215 | python, files('scripts/tracetool.py'), |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 2216 | '--backend=' + ','.join(get_option('trace_backends')) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2217 | ] |
Stefan Hajnoczi | 0572d6c | 2021-01-25 11:09:58 +0000 | [diff] [blame] | 2218 | tracetool_depends = files( |
| 2219 | 'scripts/tracetool/backend/log.py', |
| 2220 | 'scripts/tracetool/backend/__init__.py', |
| 2221 | 'scripts/tracetool/backend/dtrace.py', |
| 2222 | 'scripts/tracetool/backend/ftrace.py', |
| 2223 | 'scripts/tracetool/backend/simple.py', |
| 2224 | 'scripts/tracetool/backend/syslog.py', |
| 2225 | 'scripts/tracetool/backend/ust.py', |
| 2226 | 'scripts/tracetool/format/tcg_h.py', |
| 2227 | 'scripts/tracetool/format/ust_events_c.py', |
| 2228 | 'scripts/tracetool/format/ust_events_h.py', |
| 2229 | 'scripts/tracetool/format/__init__.py', |
| 2230 | 'scripts/tracetool/format/d.py', |
| 2231 | 'scripts/tracetool/format/tcg_helper_c.py', |
| 2232 | 'scripts/tracetool/format/simpletrace_stap.py', |
| 2233 | 'scripts/tracetool/format/c.py', |
| 2234 | 'scripts/tracetool/format/h.py', |
| 2235 | 'scripts/tracetool/format/tcg_helper_h.py', |
| 2236 | 'scripts/tracetool/format/log_stap.py', |
| 2237 | 'scripts/tracetool/format/stap.py', |
| 2238 | 'scripts/tracetool/format/tcg_helper_wrapper_h.py', |
| 2239 | 'scripts/tracetool/__init__.py', |
| 2240 | 'scripts/tracetool/transform.py', |
| 2241 | 'scripts/tracetool/vcpu.py' |
| 2242 | ) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2243 | |
Marc-André Lureau | 2c273f3 | 2019-07-15 17:10:19 +0400 | [diff] [blame] | 2244 | qemu_version_cmd = [find_program('scripts/qemu-version.sh'), |
| 2245 | meson.current_source_dir(), |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 2246 | config_host['PKGVERSION'], meson.project_version()] |
Marc-André Lureau | 2c273f3 | 2019-07-15 17:10:19 +0400 | [diff] [blame] | 2247 | qemu_version = custom_target('qemu-version.h', |
| 2248 | output: 'qemu-version.h', |
| 2249 | command: qemu_version_cmd, |
| 2250 | capture: true, |
| 2251 | build_by_default: true, |
| 2252 | build_always_stale: true) |
| 2253 | genh += qemu_version |
| 2254 | |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 2255 | hxdep = [] |
| 2256 | hx_headers = [ |
| 2257 | ['qemu-options.hx', 'qemu-options.def'], |
| 2258 | ['qemu-img-cmds.hx', 'qemu-img-cmds.h'], |
| 2259 | ] |
| 2260 | if have_system |
| 2261 | hx_headers += [ |
| 2262 | ['hmp-commands.hx', 'hmp-commands.h'], |
| 2263 | ['hmp-commands-info.hx', 'hmp-commands-info.h'], |
| 2264 | ] |
| 2265 | endif |
| 2266 | foreach d : hx_headers |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 2267 | hxdep += custom_target(d[1], |
Marc-André Lureau | 3f88565 | 2019-07-15 18:06:04 +0400 | [diff] [blame] | 2268 | input: files(d[0]), |
| 2269 | output: d[1], |
| 2270 | capture: true, |
| 2271 | build_by_default: true, # to be removed when added to a target |
| 2272 | command: [hxtool, '-h', '@INPUT0@']) |
| 2273 | endforeach |
| 2274 | genh += hxdep |
| 2275 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 2276 | ################### |
| 2277 | # Collect sources # |
| 2278 | ################### |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2279 | |
Philippe Mathieu-Daudé | 5556789 | 2020-10-06 14:56:01 +0200 | [diff] [blame] | 2280 | authz_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 2281 | blockdev_ss = ss.source_set() |
| 2282 | block_ss = ss.source_set() |
| 2283 | bsd_user_ss = ss.source_set() |
Philippe Mathieu-Daudé | c2306d7 | 2020-10-06 14:55:57 +0200 | [diff] [blame] | 2284 | chardev_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 2285 | common_ss = ss.source_set() |
Philippe Mathieu-Daudé | 2389304 | 2020-10-06 14:56:00 +0200 | [diff] [blame] | 2286 | crypto_ss = ss.source_set() |
Philippe Mathieu-Daudé | f78536b | 2020-10-06 14:55:59 +0200 | [diff] [blame] | 2287 | io_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 2288 | linux_user_ss = ss.source_set() |
| 2289 | qmp_ss = ss.source_set() |
Philippe Mathieu-Daudé | da33fc0 | 2020-10-06 14:56:02 +0200 | [diff] [blame] | 2290 | qom_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 2291 | softmmu_ss = ss.source_set() |
| 2292 | specific_fuzz_ss = ss.source_set() |
| 2293 | specific_ss = ss.source_set() |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2294 | stub_ss = ss.source_set() |
| 2295 | trace_ss = ss.source_set() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2296 | user_ss = ss.source_set() |
Philippe Mathieu-Daudé | 7e2b888 | 2020-10-06 14:55:55 +0200 | [diff] [blame] | 2297 | util_ss = ss.source_set() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2298 | |
Gerd Hoffmann | c94a7b8 | 2021-06-24 12:38:29 +0200 | [diff] [blame] | 2299 | # accel modules |
| 2300 | qtest_module_ss = ss.source_set() |
Gerd Hoffmann | dae0ec1 | 2021-06-24 12:38:31 +0200 | [diff] [blame] | 2301 | tcg_module_ss = ss.source_set() |
Gerd Hoffmann | c94a7b8 | 2021-06-24 12:38:29 +0200 | [diff] [blame] | 2302 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2303 | modules = {} |
Gerd Hoffmann | db2e89d | 2021-06-24 12:38:22 +0200 | [diff] [blame] | 2304 | target_modules = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2305 | hw_arch = {} |
| 2306 | target_arch = {} |
| 2307 | target_softmmu_arch = {} |
Philippe Mathieu-Daudé | 46369b5 | 2021-04-13 11:27:09 +0200 | [diff] [blame] | 2308 | target_user_arch = {} |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2309 | |
| 2310 | ############### |
| 2311 | # Trace files # |
| 2312 | ############### |
| 2313 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 2314 | # TODO: add each directory to the subdirs from its own meson.build, once |
| 2315 | # we have those |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2316 | trace_events_subdirs = [ |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2317 | 'crypto', |
Philippe Mathieu-Daudé | 69ff4d0 | 2021-01-22 21:44:35 +0100 | [diff] [blame] | 2318 | 'qapi', |
| 2319 | 'qom', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2320 | 'monitor', |
Philippe Mathieu-Daudé | 69ff4d0 | 2021-01-22 21:44:35 +0100 | [diff] [blame] | 2321 | 'util', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2322 | ] |
| 2323 | if have_user |
| 2324 | trace_events_subdirs += [ 'linux-user' ] |
| 2325 | endif |
| 2326 | if have_block |
| 2327 | trace_events_subdirs += [ |
| 2328 | 'authz', |
| 2329 | 'block', |
| 2330 | 'io', |
| 2331 | 'nbd', |
| 2332 | 'scsi', |
| 2333 | ] |
| 2334 | endif |
| 2335 | if have_system |
| 2336 | trace_events_subdirs += [ |
Philippe Mathieu-Daudé | 8985db2 | 2021-01-22 21:44:36 +0100 | [diff] [blame] | 2337 | 'accel/kvm', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2338 | 'audio', |
| 2339 | 'backends', |
| 2340 | 'backends/tpm', |
| 2341 | 'chardev', |
Andrew Melnychenko | 46627f4 | 2021-05-14 14:48:32 +0300 | [diff] [blame] | 2342 | 'ebpf', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2343 | 'hw/9pfs', |
| 2344 | 'hw/acpi', |
Hao Wu | 77c05b0 | 2021-01-08 11:09:42 -0800 | [diff] [blame] | 2345 | 'hw/adc', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2346 | 'hw/alpha', |
| 2347 | 'hw/arm', |
| 2348 | 'hw/audio', |
| 2349 | 'hw/block', |
| 2350 | 'hw/block/dataplane', |
| 2351 | 'hw/char', |
| 2352 | 'hw/display', |
| 2353 | 'hw/dma', |
| 2354 | 'hw/hppa', |
| 2355 | 'hw/hyperv', |
| 2356 | 'hw/i2c', |
| 2357 | 'hw/i386', |
| 2358 | 'hw/i386/xen', |
| 2359 | 'hw/ide', |
| 2360 | 'hw/input', |
| 2361 | 'hw/intc', |
| 2362 | 'hw/isa', |
| 2363 | 'hw/mem', |
| 2364 | 'hw/mips', |
| 2365 | 'hw/misc', |
| 2366 | 'hw/misc/macio', |
| 2367 | 'hw/net', |
Vikram Garhwal | 98e5d7a | 2020-11-18 11:48:43 -0800 | [diff] [blame] | 2368 | 'hw/net/can', |
Mark Cave-Ayland | ce0e6a2 | 2021-09-24 08:37:55 +0100 | [diff] [blame] | 2369 | 'hw/nubus', |
Klaus Jensen | 88eea45 | 2021-04-14 22:14:30 +0200 | [diff] [blame] | 2370 | 'hw/nvme', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2371 | 'hw/nvram', |
| 2372 | 'hw/pci', |
| 2373 | 'hw/pci-host', |
| 2374 | 'hw/ppc', |
| 2375 | 'hw/rdma', |
| 2376 | 'hw/rdma/vmw', |
| 2377 | 'hw/rtc', |
| 2378 | 'hw/s390x', |
| 2379 | 'hw/scsi', |
| 2380 | 'hw/sd', |
| 2381 | 'hw/sparc', |
| 2382 | 'hw/sparc64', |
| 2383 | 'hw/ssi', |
| 2384 | 'hw/timer', |
| 2385 | 'hw/tpm', |
| 2386 | 'hw/usb', |
| 2387 | 'hw/vfio', |
| 2388 | 'hw/virtio', |
| 2389 | 'hw/watchdog', |
| 2390 | 'hw/xen', |
| 2391 | 'hw/gpio', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2392 | 'migration', |
| 2393 | 'net', |
Philippe Mathieu-Daudé | 8b7a550 | 2020-08-05 15:02:20 +0200 | [diff] [blame] | 2394 | 'softmmu', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2395 | 'ui', |
Elena Ufimtseva | ad22c30 | 2021-01-29 11:46:10 -0500 | [diff] [blame] | 2396 | 'hw/remote', |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2397 | ] |
| 2398 | endif |
Philippe Mathieu-Daudé | 8985db2 | 2021-01-22 21:44:36 +0100 | [diff] [blame] | 2399 | if have_system or have_user |
| 2400 | trace_events_subdirs += [ |
| 2401 | 'accel/tcg', |
| 2402 | 'hw/core', |
| 2403 | 'target/arm', |
Alexander Graf | a1477da | 2021-09-16 17:53:58 +0200 | [diff] [blame] | 2404 | 'target/arm/hvf', |
Philippe Mathieu-Daudé | 8985db2 | 2021-01-22 21:44:36 +0100 | [diff] [blame] | 2405 | 'target/hppa', |
| 2406 | 'target/i386', |
| 2407 | 'target/i386/kvm', |
Philippe Mathieu-Daudé | 34b8ff2 | 2021-05-30 09:02:16 +0200 | [diff] [blame] | 2408 | 'target/mips/tcg', |
Philippe Mathieu-Daudé | 8985db2 | 2021-01-22 21:44:36 +0100 | [diff] [blame] | 2409 | 'target/ppc', |
| 2410 | 'target/riscv', |
| 2411 | 'target/s390x', |
Cho, Yu-Chen | 6704360 | 2021-07-07 18:53:23 +0800 | [diff] [blame] | 2412 | 'target/s390x/kvm', |
Philippe Mathieu-Daudé | 8985db2 | 2021-01-22 21:44:36 +0100 | [diff] [blame] | 2413 | 'target/sparc', |
| 2414 | ] |
| 2415 | endif |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2416 | |
Marc-André Lureau | 0df750e | 2020-11-25 14:06:37 +0400 | [diff] [blame] | 2417 | vhost_user = not_found |
| 2418 | if 'CONFIG_VHOST_USER' in config_host |
| 2419 | libvhost_user = subproject('libvhost-user') |
| 2420 | vhost_user = libvhost_user.get_variable('vhost_user_dep') |
| 2421 | endif |
| 2422 | |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2423 | subdir('qapi') |
| 2424 | subdir('qobject') |
| 2425 | subdir('stubs') |
| 2426 | subdir('trace') |
| 2427 | subdir('util') |
Marc-André Lureau | 5582c58 | 2019-07-16 19:28:54 +0400 | [diff] [blame] | 2428 | subdir('qom') |
| 2429 | subdir('authz') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2430 | subdir('crypto') |
Marc-André Lureau | 2d78b56 | 2019-07-15 16:00:36 +0400 | [diff] [blame] | 2431 | subdir('ui') |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2432 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2433 | |
| 2434 | if enable_modules |
| 2435 | libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO') |
| 2436 | modulecommon = declare_dependency(link_whole: libmodulecommon, compile_args: '-DBUILD_DSO') |
| 2437 | endif |
| 2438 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2439 | stub_ss = stub_ss.apply(config_all, strict: false) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2440 | |
| 2441 | util_ss.add_all(trace_ss) |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2442 | util_ss = util_ss.apply(config_all, strict: false) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2443 | libqemuutil = static_library('qemuutil', |
| 2444 | sources: util_ss.sources() + stub_ss.sources() + genh, |
Paolo Bonzini | 6d7c7c2 | 2021-06-03 15:01:35 +0200 | [diff] [blame] | 2445 | dependencies: [util_ss.dependencies(), libm, threads, glib, socket, malloc, pixman]) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2446 | qemuutil = declare_dependency(link_with: libqemuutil, |
Marc-André Lureau | 04c6f1e | 2019-07-18 00:31:05 +0400 | [diff] [blame] | 2447 | sources: genh + version_res) |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2448 | |
Philippe Mathieu-Daudé | 957b31f | 2021-01-22 21:44:37 +0100 | [diff] [blame] | 2449 | if have_system or have_user |
| 2450 | decodetree = generator(find_program('scripts/decodetree.py'), |
| 2451 | output: 'decode-@BASENAME@.c.inc', |
| 2452 | arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@']) |
| 2453 | subdir('libdecnumber') |
| 2454 | subdir('target') |
| 2455 | endif |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 2456 | |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 2457 | subdir('audio') |
Marc-André Lureau | 7fcfd45 | 2019-07-16 19:33:55 +0400 | [diff] [blame] | 2458 | subdir('io') |
Marc-André Lureau | 848e8ff | 2019-07-15 23:18:07 +0400 | [diff] [blame] | 2459 | subdir('chardev') |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 2460 | subdir('fsdev') |
Marc-André Lureau | 708eab4 | 2019-09-03 16:59:33 +0400 | [diff] [blame] | 2461 | subdir('dump') |
Marc-André Lureau | ec0d589 | 2019-07-15 15:04:49 +0400 | [diff] [blame] | 2462 | |
Philippe Mathieu-Daudé | f285bd3 | 2021-01-22 21:44:34 +0100 | [diff] [blame] | 2463 | if have_block |
| 2464 | block_ss.add(files( |
| 2465 | 'block.c', |
| 2466 | 'blockjob.c', |
| 2467 | 'job.c', |
| 2468 | 'qemu-io-cmds.c', |
| 2469 | )) |
| 2470 | block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c')) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 2471 | |
Philippe Mathieu-Daudé | f285bd3 | 2021-01-22 21:44:34 +0100 | [diff] [blame] | 2472 | subdir('nbd') |
| 2473 | subdir('scsi') |
| 2474 | subdir('block') |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 2475 | |
Philippe Mathieu-Daudé | f285bd3 | 2021-01-22 21:44:34 +0100 | [diff] [blame] | 2476 | blockdev_ss.add(files( |
| 2477 | 'blockdev.c', |
| 2478 | 'blockdev-nbd.c', |
| 2479 | 'iothread.c', |
| 2480 | 'job-qmp.c', |
| 2481 | ), gnutls) |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 2482 | |
Philippe Mathieu-Daudé | f285bd3 | 2021-01-22 21:44:34 +0100 | [diff] [blame] | 2483 | # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon, |
| 2484 | # os-win32.c does not |
| 2485 | blockdev_ss.add(when: 'CONFIG_POSIX', if_true: files('os-posix.c')) |
| 2486 | softmmu_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')]) |
| 2487 | endif |
Paolo Bonzini | 4a96337 | 2020-08-03 16:22:28 +0200 | [diff] [blame] | 2488 | |
| 2489 | common_ss.add(files('cpus-common.c')) |
| 2490 | |
Paolo Bonzini | 5d3ea0e | 2020-08-06 13:40:26 +0200 | [diff] [blame] | 2491 | subdir('softmmu') |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 2492 | |
Richard Henderson | f343346 | 2020-09-12 10:47:33 -0700 | [diff] [blame] | 2493 | common_ss.add(capstone) |
Paolo Bonzini | d9f24bf | 2020-10-06 09:05:29 +0200 | [diff] [blame] | 2494 | specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone) |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 2495 | |
Richard Henderson | 44b99a6 | 2021-03-22 12:24:26 +0100 | [diff] [blame] | 2496 | # Work around a gcc bug/misfeature wherein constant propagation looks |
| 2497 | # through an alias: |
| 2498 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99696 |
| 2499 | # to guess that a const variable is always zero. Without lto, this is |
| 2500 | # impossible, as the alias is restricted to page-vary-common.c. Indeed, |
| 2501 | # without lto, not even the alias is required -- we simply use different |
| 2502 | # declarations in different compilation units. |
| 2503 | pagevary = files('page-vary-common.c') |
| 2504 | if get_option('b_lto') |
| 2505 | pagevary_flags = ['-fno-lto'] |
| 2506 | if get_option('cfi') |
| 2507 | pagevary_flags += '-fno-sanitize=cfi-icall' |
| 2508 | endif |
| 2509 | pagevary = static_library('page-vary-common', sources: pagevary, |
| 2510 | c_args: pagevary_flags) |
| 2511 | pagevary = declare_dependency(link_with: pagevary) |
| 2512 | endif |
| 2513 | common_ss.add(pagevary) |
Richard Henderson | 6670d4d | 2021-03-22 12:24:24 +0100 | [diff] [blame] | 2514 | specific_ss.add(files('page-vary.c')) |
| 2515 | |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 2516 | subdir('backends') |
Marc-André Lureau | c574e16 | 2019-07-26 12:02:31 +0400 | [diff] [blame] | 2517 | subdir('disas') |
Marc-André Lureau | 5516623 | 2019-07-24 19:16:22 +0400 | [diff] [blame] | 2518 | subdir('migration') |
Paolo Bonzini | ff219dc | 2020-08-04 21:14:26 +0200 | [diff] [blame] | 2519 | subdir('monitor') |
Marc-André Lureau | cdaf072 | 2019-07-22 23:47:50 +0400 | [diff] [blame] | 2520 | subdir('net') |
Marc-André Lureau | 17ef2af | 2019-07-22 23:40:45 +0400 | [diff] [blame] | 2521 | subdir('replay') |
Philippe Mathieu-Daudé | 8df9f0c | 2021-03-05 13:54:50 +0000 | [diff] [blame] | 2522 | subdir('semihosting') |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 2523 | subdir('hw') |
Richard Henderson | 104cc2c | 2021-03-08 12:04:33 -0800 | [diff] [blame] | 2524 | subdir('tcg') |
Richard Henderson | c634754 | 2021-03-08 12:15:06 -0800 | [diff] [blame] | 2525 | subdir('fpu') |
Marc-André Lureau | 1a82878 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2526 | subdir('accel') |
Paolo Bonzini | f556b4a | 2020-01-24 13:08:01 +0100 | [diff] [blame] | 2527 | subdir('plugins') |
Marc-André Lureau | b309c32 | 2019-08-18 19:20:37 +0400 | [diff] [blame] | 2528 | subdir('bsd-user') |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2529 | subdir('linux-user') |
Andrew Melnychenko | 46627f4 | 2021-05-14 14:48:32 +0300 | [diff] [blame] | 2530 | subdir('ebpf') |
| 2531 | |
Marc-André Lureau | b309c32 | 2019-08-18 19:20:37 +0400 | [diff] [blame] | 2532 | bsd_user_ss.add(files('gdbstub.c')) |
| 2533 | specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss) |
| 2534 | |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2535 | linux_user_ss.add(files('gdbstub.c', 'thunk.c')) |
| 2536 | 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] | 2537 | |
Paolo Bonzini | a2ce7db | 2020-08-04 20:00:40 +0200 | [diff] [blame] | 2538 | # needed for fuzzing binaries |
| 2539 | subdir('tests/qtest/libqos') |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2540 | subdir('tests/qtest/fuzz') |
Paolo Bonzini | a2ce7db | 2020-08-04 20:00:40 +0200 | [diff] [blame] | 2541 | |
Gerd Hoffmann | c94a7b8 | 2021-06-24 12:38:29 +0200 | [diff] [blame] | 2542 | # accel modules |
Gerd Hoffmann | dae0ec1 | 2021-06-24 12:38:31 +0200 | [diff] [blame] | 2543 | tcg_real_module_ss = ss.source_set() |
| 2544 | tcg_real_module_ss.add_all(when: 'CONFIG_TCG_MODULAR', if_true: tcg_module_ss) |
| 2545 | specific_ss.add_all(when: 'CONFIG_TCG_BUILTIN', if_true: tcg_module_ss) |
| 2546 | target_modules += { 'accel' : { 'qtest': qtest_module_ss, |
| 2547 | 'tcg': tcg_real_module_ss }} |
Gerd Hoffmann | c94a7b8 | 2021-06-24 12:38:29 +0200 | [diff] [blame] | 2548 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 2549 | ######################## |
| 2550 | # Library dependencies # |
| 2551 | ######################## |
| 2552 | |
Gerd Hoffmann | f5723ab | 2021-06-24 12:38:04 +0200 | [diff] [blame] | 2553 | modinfo_collect = find_program('scripts/modinfo-collect.py') |
Gerd Hoffmann | 5ebbfec | 2021-06-24 12:38:05 +0200 | [diff] [blame] | 2554 | modinfo_generate = find_program('scripts/modinfo-generate.py') |
Gerd Hoffmann | f5723ab | 2021-06-24 12:38:04 +0200 | [diff] [blame] | 2555 | modinfo_files = [] |
| 2556 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2557 | block_mods = [] |
| 2558 | softmmu_mods = [] |
| 2559 | foreach d, list : modules |
| 2560 | foreach m, module_ss : list |
| 2561 | if enable_modules and targetos != 'windows' |
Gerd Hoffmann | 3e292c5 | 2020-09-14 15:42:20 +0200 | [diff] [blame] | 2562 | module_ss = module_ss.apply(config_all, strict: false) |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2563 | sl = static_library(d + '-' + m, [genh, module_ss.sources()], |
| 2564 | dependencies: [modulecommon, module_ss.dependencies()], pic: true) |
| 2565 | if d == 'block' |
| 2566 | block_mods += sl |
| 2567 | else |
| 2568 | softmmu_mods += sl |
| 2569 | endif |
Gerd Hoffmann | f5723ab | 2021-06-24 12:38:04 +0200 | [diff] [blame] | 2570 | if module_ss.sources() != [] |
| 2571 | # FIXME: Should use sl.extract_all_objects(recursive: true) as |
| 2572 | # input. Sources can be used multiple times but objects are |
| 2573 | # unique when it comes to lookup in compile_commands.json. |
| 2574 | # Depnds on a mesion version with |
| 2575 | # https://github.com/mesonbuild/meson/pull/8900 |
| 2576 | modinfo_files += custom_target(d + '-' + m + '.modinfo', |
| 2577 | output: d + '-' + m + '.modinfo', |
Paolo Bonzini | ac34711 | 2021-07-21 18:51:57 +0200 | [diff] [blame] | 2578 | input: module_ss.sources() + genh, |
Gerd Hoffmann | f5723ab | 2021-06-24 12:38:04 +0200 | [diff] [blame] | 2579 | capture: true, |
Paolo Bonzini | ac34711 | 2021-07-21 18:51:57 +0200 | [diff] [blame] | 2580 | command: [modinfo_collect, module_ss.sources()]) |
Gerd Hoffmann | f5723ab | 2021-06-24 12:38:04 +0200 | [diff] [blame] | 2581 | endif |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2582 | else |
| 2583 | if d == 'block' |
| 2584 | block_ss.add_all(module_ss) |
| 2585 | else |
| 2586 | softmmu_ss.add_all(module_ss) |
| 2587 | endif |
| 2588 | endif |
| 2589 | endforeach |
| 2590 | endforeach |
| 2591 | |
Gerd Hoffmann | db2e89d | 2021-06-24 12:38:22 +0200 | [diff] [blame] | 2592 | foreach d, list : target_modules |
| 2593 | foreach m, module_ss : list |
| 2594 | if enable_modules and targetos != 'windows' |
| 2595 | foreach target : target_dirs |
| 2596 | if target.endswith('-softmmu') |
| 2597 | config_target = config_target_mak[target] |
| 2598 | config_target += config_host |
| 2599 | target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])] |
| 2600 | c_args = ['-DNEED_CPU_H', |
| 2601 | '-DCONFIG_TARGET="@0@-config-target.h"'.format(target), |
| 2602 | '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)] |
| 2603 | target_module_ss = module_ss.apply(config_target, strict: false) |
| 2604 | if target_module_ss.sources() != [] |
| 2605 | module_name = d + '-' + m + '-' + config_target['TARGET_NAME'] |
| 2606 | sl = static_library(module_name, |
| 2607 | [genh, target_module_ss.sources()], |
| 2608 | dependencies: [modulecommon, target_module_ss.dependencies()], |
| 2609 | include_directories: target_inc, |
| 2610 | c_args: c_args, |
| 2611 | pic: true) |
| 2612 | softmmu_mods += sl |
| 2613 | # FIXME: Should use sl.extract_all_objects(recursive: true) too. |
| 2614 | modinfo_files += custom_target(module_name + '.modinfo', |
| 2615 | output: module_name + '.modinfo', |
Gerd Hoffmann | 917ddc2 | 2021-07-23 14:01:56 +0200 | [diff] [blame] | 2616 | input: target_module_ss.sources() + genh, |
Gerd Hoffmann | db2e89d | 2021-06-24 12:38:22 +0200 | [diff] [blame] | 2617 | capture: true, |
Gerd Hoffmann | 917ddc2 | 2021-07-23 14:01:56 +0200 | [diff] [blame] | 2618 | command: [modinfo_collect, '--target', target, target_module_ss.sources()]) |
Gerd Hoffmann | db2e89d | 2021-06-24 12:38:22 +0200 | [diff] [blame] | 2619 | endif |
| 2620 | endif |
| 2621 | endforeach |
| 2622 | else |
| 2623 | specific_ss.add_all(module_ss) |
| 2624 | endif |
| 2625 | endforeach |
| 2626 | endforeach |
| 2627 | |
Gerd Hoffmann | 5ebbfec | 2021-06-24 12:38:05 +0200 | [diff] [blame] | 2628 | if enable_modules |
| 2629 | modinfo_src = custom_target('modinfo.c', |
| 2630 | output: 'modinfo.c', |
| 2631 | input: modinfo_files, |
| 2632 | command: [modinfo_generate, '@INPUT@'], |
| 2633 | capture: true) |
| 2634 | modinfo_lib = static_library('modinfo', modinfo_src) |
| 2635 | modinfo_dep = declare_dependency(link_whole: modinfo_lib) |
| 2636 | softmmu_ss.add(modinfo_dep) |
| 2637 | endif |
| 2638 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2639 | nm = find_program('nm') |
Yonggang Luo | 604f3e4 | 2020-09-03 01:00:50 +0800 | [diff] [blame] | 2640 | undefsym = find_program('scripts/undefsym.py') |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2641 | block_syms = custom_target('block.syms', output: 'block.syms', |
| 2642 | input: [libqemuutil, block_mods], |
| 2643 | capture: true, |
| 2644 | command: [undefsym, nm, '@INPUT@']) |
| 2645 | qemu_syms = custom_target('qemu.syms', output: 'qemu.syms', |
| 2646 | input: [libqemuutil, softmmu_mods], |
| 2647 | capture: true, |
| 2648 | command: [undefsym, nm, '@INPUT@']) |
| 2649 | |
Philippe Mathieu-Daudé | da33fc0 | 2020-10-06 14:56:02 +0200 | [diff] [blame] | 2650 | qom_ss = qom_ss.apply(config_host, strict: false) |
| 2651 | libqom = static_library('qom', qom_ss.sources() + genh, |
| 2652 | dependencies: [qom_ss.dependencies()], |
| 2653 | name_suffix: 'fa') |
| 2654 | |
| 2655 | qom = declare_dependency(link_whole: libqom) |
| 2656 | |
Philippe Mathieu-Daudé | 5556789 | 2020-10-06 14:56:01 +0200 | [diff] [blame] | 2657 | authz_ss = authz_ss.apply(config_host, strict: false) |
| 2658 | libauthz = static_library('authz', authz_ss.sources() + genh, |
| 2659 | dependencies: [authz_ss.dependencies()], |
| 2660 | name_suffix: 'fa', |
| 2661 | build_by_default: false) |
| 2662 | |
| 2663 | authz = declare_dependency(link_whole: libauthz, |
| 2664 | dependencies: qom) |
| 2665 | |
Philippe Mathieu-Daudé | 2389304 | 2020-10-06 14:56:00 +0200 | [diff] [blame] | 2666 | crypto_ss = crypto_ss.apply(config_host, strict: false) |
| 2667 | libcrypto = static_library('crypto', crypto_ss.sources() + genh, |
| 2668 | dependencies: [crypto_ss.dependencies()], |
| 2669 | name_suffix: 'fa', |
| 2670 | build_by_default: false) |
| 2671 | |
| 2672 | crypto = declare_dependency(link_whole: libcrypto, |
| 2673 | dependencies: [authz, qom]) |
| 2674 | |
Philippe Mathieu-Daudé | f78536b | 2020-10-06 14:55:59 +0200 | [diff] [blame] | 2675 | io_ss = io_ss.apply(config_host, strict: false) |
| 2676 | libio = static_library('io', io_ss.sources() + genh, |
| 2677 | dependencies: [io_ss.dependencies()], |
| 2678 | link_with: libqemuutil, |
| 2679 | name_suffix: 'fa', |
| 2680 | build_by_default: false) |
| 2681 | |
| 2682 | io = declare_dependency(link_whole: libio, dependencies: [crypto, qom]) |
| 2683 | |
Philippe Mathieu-Daudé | 7e6edef | 2020-10-06 14:55:58 +0200 | [diff] [blame] | 2684 | libmigration = static_library('migration', sources: migration_files + genh, |
| 2685 | name_suffix: 'fa', |
| 2686 | build_by_default: false) |
| 2687 | migration = declare_dependency(link_with: libmigration, |
| 2688 | dependencies: [zlib, qom, io]) |
| 2689 | softmmu_ss.add(migration) |
| 2690 | |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 2691 | block_ss = block_ss.apply(config_host, strict: false) |
| 2692 | libblock = static_library('block', block_ss.sources() + genh, |
| 2693 | dependencies: block_ss.dependencies(), |
| 2694 | link_depends: block_syms, |
| 2695 | name_suffix: 'fa', |
| 2696 | build_by_default: false) |
| 2697 | |
| 2698 | block = declare_dependency(link_whole: [libblock], |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 2699 | link_args: '@block.syms', |
| 2700 | dependencies: [crypto, io]) |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 2701 | |
Stefan Hajnoczi | 4fb9071 | 2020-09-29 13:55:14 +0100 | [diff] [blame] | 2702 | blockdev_ss = blockdev_ss.apply(config_host, strict: false) |
| 2703 | libblockdev = static_library('blockdev', blockdev_ss.sources() + genh, |
| 2704 | dependencies: blockdev_ss.dependencies(), |
| 2705 | name_suffix: 'fa', |
| 2706 | build_by_default: false) |
| 2707 | |
| 2708 | blockdev = declare_dependency(link_whole: [libblockdev], |
| 2709 | dependencies: [block]) |
| 2710 | |
Paolo Bonzini | ff219dc | 2020-08-04 21:14:26 +0200 | [diff] [blame] | 2711 | qmp_ss = qmp_ss.apply(config_host, strict: false) |
| 2712 | libqmp = static_library('qmp', qmp_ss.sources() + genh, |
| 2713 | dependencies: qmp_ss.dependencies(), |
| 2714 | name_suffix: 'fa', |
| 2715 | build_by_default: false) |
| 2716 | |
| 2717 | qmp = declare_dependency(link_whole: [libqmp]) |
| 2718 | |
Philippe Mathieu-Daudé | c2306d7 | 2020-10-06 14:55:57 +0200 | [diff] [blame] | 2719 | libchardev = static_library('chardev', chardev_ss.sources() + genh, |
| 2720 | name_suffix: 'fa', |
Roman Bolshakov | 3eacf70 | 2021-01-02 15:52:13 +0300 | [diff] [blame] | 2721 | dependencies: [gnutls], |
Philippe Mathieu-Daudé | c2306d7 | 2020-10-06 14:55:57 +0200 | [diff] [blame] | 2722 | build_by_default: false) |
| 2723 | |
| 2724 | chardev = declare_dependency(link_whole: libchardev) |
| 2725 | |
Philippe Mathieu-Daudé | e28ab09 | 2020-10-06 14:55:56 +0200 | [diff] [blame] | 2726 | libhwcore = static_library('hwcore', sources: hwcore_files + genh, |
| 2727 | name_suffix: 'fa', |
| 2728 | build_by_default: false) |
| 2729 | hwcore = declare_dependency(link_whole: libhwcore) |
| 2730 | common_ss.add(hwcore) |
| 2731 | |
Philippe Mathieu-Daudé | 064f8ee | 2020-10-06 14:55:54 +0200 | [diff] [blame] | 2732 | ########### |
| 2733 | # Targets # |
| 2734 | ########### |
| 2735 | |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2736 | foreach m : block_mods + softmmu_mods |
| 2737 | shared_module(m.name(), |
| 2738 | name_prefix: '', |
| 2739 | link_whole: m, |
| 2740 | install: true, |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 2741 | install_dir: qemu_moddir) |
Marc-André Lureau | 3154fee | 2019-08-29 22:07:01 +0400 | [diff] [blame] | 2742 | endforeach |
| 2743 | |
Stefan Hajnoczi | 4fb9071 | 2020-09-29 13:55:14 +0100 | [diff] [blame] | 2744 | softmmu_ss.add(authz, blockdev, chardev, crypto, io, qmp) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2745 | common_ss.add(qom, qemuutil) |
| 2746 | |
| 2747 | common_ss.add_all(when: 'CONFIG_SOFTMMU', if_true: [softmmu_ss]) |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2748 | common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss) |
| 2749 | |
| 2750 | common_all = common_ss.apply(config_all, strict: false) |
| 2751 | common_all = static_library('common', |
| 2752 | build_by_default: false, |
| 2753 | sources: common_all.sources() + genh, |
Katsuhiro Ueno | 75eebe0 | 2021-04-29 11:43:07 +0900 | [diff] [blame] | 2754 | implicit_include_directories: false, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2755 | dependencies: common_all.dependencies(), |
| 2756 | name_suffix: 'fa') |
| 2757 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 2758 | feature_to_c = find_program('scripts/feature_to_c.sh') |
| 2759 | |
Paolo Bonzini | fd5eef8 | 2020-09-16 05:00:53 -0400 | [diff] [blame] | 2760 | emulators = {} |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2761 | foreach target : target_dirs |
| 2762 | config_target = config_target_mak[target] |
| 2763 | target_name = config_target['TARGET_NAME'] |
| 2764 | arch = config_target['TARGET_BASE_ARCH'] |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 2765 | arch_srcs = [config_target_h[target]] |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2766 | arch_deps = [] |
| 2767 | c_args = ['-DNEED_CPU_H', |
| 2768 | '-DCONFIG_TARGET="@0@-config-target.h"'.format(target), |
| 2769 | '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)] |
Paolo Bonzini | b6c7cfd | 2020-09-21 04:49:50 -0400 | [diff] [blame] | 2770 | link_args = emulator_link_args |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2771 | |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 2772 | config_target += config_host |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2773 | target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])] |
| 2774 | if targetos == 'linux' |
| 2775 | target_inc += include_directories('linux-headers', is_system: true) |
| 2776 | endif |
| 2777 | if target.endswith('-softmmu') |
| 2778 | qemu_target_name = 'qemu-system-' + target_name |
| 2779 | target_type='system' |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 2780 | t = target_softmmu_arch[arch].apply(config_target, strict: false) |
| 2781 | arch_srcs += t.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2782 | arch_deps += t.dependencies() |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 2783 | |
Marc-André Lureau | 2c44220 | 2019-08-17 13:55:58 +0400 | [diff] [blame] | 2784 | hw_dir = target_name == 'sparc64' ? 'sparc64' : arch |
| 2785 | hw = hw_arch[hw_dir].apply(config_target, strict: false) |
| 2786 | arch_srcs += hw.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2787 | arch_deps += hw.dependencies() |
Marc-André Lureau | 2c44220 | 2019-08-17 13:55:58 +0400 | [diff] [blame] | 2788 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2789 | arch_srcs += config_devices_h[target] |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2790 | link_args += ['@block.syms', '@qemu.syms'] |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2791 | else |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2792 | abi = config_target['TARGET_ABI_DIR'] |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2793 | target_type='user' |
| 2794 | qemu_target_name = 'qemu-' + target_name |
Philippe Mathieu-Daudé | 46369b5 | 2021-04-13 11:27:09 +0200 | [diff] [blame] | 2795 | if arch in target_user_arch |
| 2796 | t = target_user_arch[arch].apply(config_target, strict: false) |
| 2797 | arch_srcs += t.sources() |
| 2798 | arch_deps += t.dependencies() |
| 2799 | endif |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2800 | if 'CONFIG_LINUX_USER' in config_target |
| 2801 | base_dir = 'linux-user' |
| 2802 | target_inc += include_directories('linux-user/host/' / config_host['ARCH']) |
Warner Losh | e2a7472 | 2021-08-03 17:17:17 -0600 | [diff] [blame] | 2803 | endif |
| 2804 | if 'CONFIG_BSD_USER' in config_target |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2805 | base_dir = 'bsd-user' |
Warner Losh | e2a7472 | 2021-08-03 17:17:17 -0600 | [diff] [blame] | 2806 | target_inc += include_directories('bsd-user/' / targetos) |
| 2807 | dir = base_dir / abi |
| 2808 | arch_srcs += files(dir / 'target_arch_cpu.c') |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2809 | endif |
| 2810 | target_inc += include_directories( |
| 2811 | base_dir, |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2812 | base_dir / abi, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2813 | ) |
Marc-André Lureau | 3a30446 | 2019-08-18 16:13:08 +0400 | [diff] [blame] | 2814 | if 'CONFIG_LINUX_USER' in config_target |
| 2815 | dir = base_dir / abi |
| 2816 | arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c') |
| 2817 | if config_target.has_key('TARGET_SYSTBL_ABI') |
| 2818 | arch_srcs += \ |
| 2819 | syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'], |
| 2820 | extra_args : config_target['TARGET_SYSTBL_ABI']) |
| 2821 | endif |
| 2822 | endif |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2823 | endif |
| 2824 | |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 2825 | if 'TARGET_XML_FILES' in config_target |
| 2826 | gdbstub_xml = custom_target(target + '-gdbstub-xml.c', |
| 2827 | output: target + '-gdbstub-xml.c', |
| 2828 | input: files(config_target['TARGET_XML_FILES'].split()), |
| 2829 | command: [feature_to_c, '@INPUT@'], |
| 2830 | capture: true) |
| 2831 | arch_srcs += gdbstub_xml |
| 2832 | endif |
| 2833 | |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 2834 | t = target_arch[arch].apply(config_target, strict: false) |
| 2835 | arch_srcs += t.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2836 | arch_deps += t.dependencies() |
Paolo Bonzini | abff1ab | 2020-08-07 12:10:23 +0200 | [diff] [blame] | 2837 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2838 | target_common = common_ss.apply(config_target, strict: false) |
| 2839 | objects = common_all.extract_objects(target_common.sources()) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2840 | deps = target_common.dependencies() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2841 | |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2842 | target_specific = specific_ss.apply(config_target, strict: false) |
| 2843 | arch_srcs += target_specific.sources() |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2844 | arch_deps += target_specific.dependencies() |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2845 | |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2846 | lib = static_library('qemu-' + target, |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 2847 | sources: arch_srcs + genh, |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 2848 | dependencies: arch_deps, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2849 | objects: objects, |
| 2850 | include_directories: target_inc, |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2851 | c_args: c_args, |
| 2852 | build_by_default: false, |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2853 | name_suffix: 'fa') |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2854 | |
| 2855 | if target.endswith('-softmmu') |
| 2856 | execs = [{ |
| 2857 | 'name': 'qemu-system-' + target_name, |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2858 | 'win_subsystem': 'console', |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2859 | 'sources': files('softmmu/main.c'), |
| 2860 | 'dependencies': [] |
| 2861 | }] |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 2862 | if targetos == 'windows' and (sdl.found() or gtk.found()) |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2863 | execs += [{ |
| 2864 | 'name': 'qemu-system-' + target_name + 'w', |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2865 | 'win_subsystem': 'windows', |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2866 | 'sources': files('softmmu/main.c'), |
| 2867 | 'dependencies': [] |
| 2868 | }] |
| 2869 | endif |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 2870 | if get_option('fuzzing') |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2871 | specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false) |
| 2872 | execs += [{ |
| 2873 | 'name': 'qemu-fuzz-' + target_name, |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2874 | 'win_subsystem': 'console', |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2875 | 'sources': specific_fuzz.sources(), |
| 2876 | 'dependencies': specific_fuzz.dependencies(), |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2877 | }] |
| 2878 | endif |
| 2879 | else |
| 2880 | execs = [{ |
| 2881 | 'name': 'qemu-' + target_name, |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2882 | 'win_subsystem': 'console', |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2883 | 'sources': [], |
| 2884 | 'dependencies': [] |
| 2885 | }] |
| 2886 | endif |
| 2887 | foreach exe: execs |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2888 | exe_name = exe['name'] |
John Arbuckle | 3983a76 | 2021-07-05 15:53:28 -0400 | [diff] [blame] | 2889 | if targetos == 'darwin' |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2890 | exe_name += '-unsigned' |
| 2891 | endif |
| 2892 | |
| 2893 | emulator = executable(exe_name, exe['sources'], |
Akihiko Odaki | 237377a | 2021-02-25 09:06:14 +0900 | [diff] [blame] | 2894 | install: true, |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2895 | c_args: c_args, |
| 2896 | dependencies: arch_deps + deps + exe['dependencies'], |
| 2897 | objects: lib.extract_all_objects(recursive: true), |
| 2898 | link_language: link_language, |
| 2899 | link_depends: [block_syms, qemu_syms] + exe.get('link_depends', []), |
| 2900 | link_args: link_args, |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2901 | win_subsystem: exe['win_subsystem']) |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2902 | |
John Arbuckle | 3983a76 | 2021-07-05 15:53:28 -0400 | [diff] [blame] | 2903 | if targetos == 'darwin' |
Akihiko Odaki | 411ad8d | 2021-07-09 10:25:33 +0900 | [diff] [blame] | 2904 | icon = 'pc-bios/qemu.rsrc' |
| 2905 | build_input = [emulator, files(icon)] |
| 2906 | install_input = [ |
| 2907 | get_option('bindir') / exe_name, |
| 2908 | meson.current_source_dir() / icon |
| 2909 | ] |
| 2910 | if 'CONFIG_HVF' in config_target |
| 2911 | entitlements = 'accel/hvf/entitlements.plist' |
| 2912 | build_input += files(entitlements) |
| 2913 | install_input += meson.current_source_dir() / entitlements |
| 2914 | endif |
| 2915 | |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2916 | emulators += {exe['name'] : custom_target(exe['name'], |
Akihiko Odaki | 411ad8d | 2021-07-09 10:25:33 +0900 | [diff] [blame] | 2917 | input: build_input, |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2918 | output: exe['name'], |
| 2919 | command: [ |
Akihiko Odaki | 411ad8d | 2021-07-09 10:25:33 +0900 | [diff] [blame] | 2920 | files('scripts/entitlement.sh'), |
| 2921 | '@OUTPUT@', |
| 2922 | '@INPUT@' |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2923 | ]) |
| 2924 | } |
Akihiko Odaki | 237377a | 2021-02-25 09:06:14 +0900 | [diff] [blame] | 2925 | |
| 2926 | meson.add_install_script('scripts/entitlement.sh', '--install', |
Akihiko Odaki | 237377a | 2021-02-25 09:06:14 +0900 | [diff] [blame] | 2927 | get_option('bindir') / exe['name'], |
Akihiko Odaki | 411ad8d | 2021-07-09 10:25:33 +0900 | [diff] [blame] | 2928 | install_input) |
Alexander Graf | 8a74ce6 | 2021-01-20 23:44:34 +0100 | [diff] [blame] | 2929 | else |
| 2930 | emulators += {exe['name']: emulator} |
| 2931 | endif |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2932 | |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 2933 | if stap.found() |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2934 | foreach stp: [ |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 2935 | {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / exe['name'], 'install': false}, |
| 2936 | {'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] | 2937 | {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true}, |
| 2938 | {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true}, |
| 2939 | ] |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 2940 | custom_target(exe['name'] + stp['ext'], |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2941 | input: trace_events_all, |
Stefan Hajnoczi | bd5f973 | 2020-08-25 08:49:53 +0200 | [diff] [blame] | 2942 | output: exe['name'] + stp['ext'], |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2943 | install: stp['install'], |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 2944 | install_dir: get_option('datadir') / 'systemtap/tapset', |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2945 | command: [ |
| 2946 | tracetool, '--group=all', '--format=' + stp['fmt'], |
| 2947 | '--binary=' + stp['bin'], |
| 2948 | '--target-name=' + target_name, |
| 2949 | '--target-type=' + target_type, |
| 2950 | '--probe-prefix=qemu.' + target_type + '.' + target_name, |
Stefan Hajnoczi | c05012a | 2020-08-27 15:29:12 +0100 | [diff] [blame] | 2951 | '@INPUT@', '@OUTPUT@' |
Stefan Hajnoczi | 0572d6c | 2021-01-25 11:09:58 +0000 | [diff] [blame] | 2952 | ], |
| 2953 | depend_files: tracetool_depends) |
Marc-André Lureau | 10e1d26 | 2019-08-20 12:29:52 +0400 | [diff] [blame] | 2954 | endforeach |
| 2955 | endif |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 2956 | endforeach |
Paolo Bonzini | 2becc36 | 2020-02-03 11:42:03 +0100 | [diff] [blame] | 2957 | endforeach |
| 2958 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 2959 | # Other build targets |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 2960 | |
Paolo Bonzini | f556b4a | 2020-01-24 13:08:01 +0100 | [diff] [blame] | 2961 | if 'CONFIG_PLUGIN' in config_host |
| 2962 | install_headers('include/qemu/qemu-plugin.h') |
| 2963 | endif |
| 2964 | |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 2965 | if 'CONFIG_GUEST_AGENT' in config_host |
| 2966 | subdir('qga') |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 2967 | elif get_option('guest_agent_msi').enabled() |
| 2968 | error('Guest agent MSI requested, but the guest agent is not being built') |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 2969 | endif |
| 2970 | |
Laurent Vivier | 9755c94 | 2020-08-24 17:24:30 +0200 | [diff] [blame] | 2971 | # Don't build qemu-keymap if xkbcommon is not explicitly enabled |
| 2972 | # when we don't build tools or system |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 2973 | if xkbcommon.found() |
Marc-André Lureau | 2874246 | 2019-09-19 20:24:43 +0400 | [diff] [blame] | 2974 | # used for the update-keymaps target, so include rules even if !have_tools |
| 2975 | qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh, |
| 2976 | dependencies: [qemuutil, xkbcommon], install: have_tools) |
| 2977 | endif |
| 2978 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 2979 | if have_tools |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 2980 | qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep], |
| 2981 | dependencies: [authz, block, crypto, io, qom, qemuutil], install: true) |
| 2982 | qemu_io = executable('qemu-io', files('qemu-io.c'), |
| 2983 | dependencies: [block, qemuutil], install: true) |
Daniel P. Berrangé | eb70598 | 2020-08-25 11:38:50 +0100 | [diff] [blame] | 2984 | qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'), |
Roman Bolshakov | 3eacf70 | 2021-01-02 15:52:13 +0300 | [diff] [blame] | 2985 | dependencies: [blockdev, qemuutil, gnutls], install: true) |
Marc-André Lureau | b7c70bf | 2019-07-16 21:37:25 +0400 | [diff] [blame] | 2986 | |
Paolo Bonzini | 7c58bb7 | 2020-08-04 20:18:36 +0200 | [diff] [blame] | 2987 | subdir('storage-daemon') |
Paolo Bonzini | a9c9727 | 2019-06-10 12:27:52 +0200 | [diff] [blame] | 2988 | subdir('contrib/rdmacm-mux') |
Marc-André Lureau | 1d7bb6a | 2019-07-12 23:47:06 +0400 | [diff] [blame] | 2989 | subdir('contrib/elf2dmp') |
Paolo Bonzini | a9c9727 | 2019-06-10 12:27:52 +0200 | [diff] [blame] | 2990 | |
Marc-André Lureau | 157e7b1 | 2019-07-15 14:50:58 +0400 | [diff] [blame] | 2991 | executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'), |
| 2992 | dependencies: qemuutil, |
| 2993 | install: true) |
| 2994 | |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 2995 | if 'CONFIG_VHOST_USER' in config_host |
Paolo Bonzini | 2d7ac0a | 2019-06-10 12:18:02 +0200 | [diff] [blame] | 2996 | subdir('contrib/vhost-user-blk') |
Paolo Bonzini | b7612f4 | 2020-08-26 08:22:58 +0200 | [diff] [blame] | 2997 | subdir('contrib/vhost-user-gpu') |
Marc-André Lureau | 32fcc62 | 2019-07-12 22:11:20 +0400 | [diff] [blame] | 2998 | subdir('contrib/vhost-user-input') |
Paolo Bonzini | 99650b6 | 2019-06-10 12:21:14 +0200 | [diff] [blame] | 2999 | subdir('contrib/vhost-user-scsi') |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 3000 | endif |
Marc-André Lureau | 8f51e01 | 2019-07-15 14:39:25 +0400 | [diff] [blame] | 3001 | |
| 3002 | if targetos == 'linux' |
| 3003 | executable('qemu-bridge-helper', files('qemu-bridge-helper.c'), |
| 3004 | dependencies: [qemuutil, libcap_ng], |
| 3005 | install: true, |
| 3006 | install_dir: get_option('libexecdir')) |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 3007 | |
| 3008 | executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'), |
| 3009 | dependencies: [authz, crypto, io, qom, qemuutil, |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 3010 | libcap_ng, mpathpersist], |
Marc-André Lureau | 897b5af | 2019-07-16 21:54:15 +0400 | [diff] [blame] | 3011 | install: true) |
Marc-André Lureau | 8f51e01 | 2019-07-15 14:39:25 +0400 | [diff] [blame] | 3012 | endif |
| 3013 | |
Paolo Bonzini | ccd250a | 2021-06-03 12:50:17 +0200 | [diff] [blame] | 3014 | if have_ivshmem |
Marc-André Lureau | 5ee24e7 | 2019-07-12 23:16:54 +0400 | [diff] [blame] | 3015 | subdir('contrib/ivshmem-client') |
| 3016 | subdir('contrib/ivshmem-server') |
| 3017 | endif |
Paolo Bonzini | 931049b | 2020-02-05 09:44:24 +0100 | [diff] [blame] | 3018 | endif |
| 3019 | |
Marc-André Lureau | f5aa632 | 2020-08-26 17:06:18 +0400 | [diff] [blame] | 3020 | subdir('scripts') |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 3021 | subdir('tools') |
Marc-André Lureau | bdcbea7 | 2019-07-15 21:22:31 +0400 | [diff] [blame] | 3022 | subdir('pc-bios') |
Paolo Bonzini | f8aa24e | 2020-08-05 15:49:10 +0200 | [diff] [blame] | 3023 | subdir('docs') |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 3024 | subdir('tests') |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 3025 | if gtk.found() |
Marc-André Lureau | e8f3bd7 | 2019-09-19 21:02:09 +0400 | [diff] [blame] | 3026 | subdir('po') |
| 3027 | endif |
Paolo Bonzini | 3f99cf5 | 2020-02-05 09:45:39 +0100 | [diff] [blame] | 3028 | |
Marc-André Lureau | 8adfeba | 2020-08-26 15:04:19 +0400 | [diff] [blame] | 3029 | if host_machine.system() == 'windows' |
| 3030 | nsis_cmd = [ |
| 3031 | find_program('scripts/nsis.py'), |
| 3032 | '@OUTPUT@', |
| 3033 | get_option('prefix'), |
| 3034 | meson.current_source_dir(), |
Stefan Weil | 24bdcc9 | 2020-11-25 20:18:33 +0100 | [diff] [blame] | 3035 | host_machine.cpu(), |
Marc-André Lureau | 8adfeba | 2020-08-26 15:04:19 +0400 | [diff] [blame] | 3036 | '--', |
| 3037 | '-DDISPLAYVERSION=' + meson.project_version(), |
| 3038 | ] |
| 3039 | if build_docs |
| 3040 | nsis_cmd += '-DCONFIG_DOCUMENTATION=y' |
| 3041 | endif |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 3042 | if gtk.found() |
Marc-André Lureau | 8adfeba | 2020-08-26 15:04:19 +0400 | [diff] [blame] | 3043 | nsis_cmd += '-DCONFIG_GTK=y' |
| 3044 | endif |
| 3045 | |
| 3046 | nsis = custom_target('nsis', |
| 3047 | output: 'qemu-setup-' + meson.project_version() + '.exe', |
| 3048 | input: files('qemu.nsi'), |
| 3049 | build_always_stale: true, |
| 3050 | command: nsis_cmd + ['@INPUT@']) |
| 3051 | alias_target('installer', nsis) |
| 3052 | endif |
| 3053 | |
Paolo Bonzini | a0c9162 | 2020-10-07 11:01:51 -0400 | [diff] [blame] | 3054 | ######################### |
| 3055 | # Configuration summary # |
| 3056 | ######################### |
| 3057 | |
Philippe Mathieu-Daudé | 983d0a7 | 2021-01-21 10:56:09 +0100 | [diff] [blame] | 3058 | # Directories |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3059 | summary_info = {} |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 3060 | summary_info += {'Install prefix': get_option('prefix')} |
| 3061 | summary_info += {'BIOS directory': qemu_datadir} |
| 3062 | summary_info += {'firmware path': get_option('qemu_firmwarepath')} |
| 3063 | summary_info += {'binary directory': get_option('bindir')} |
| 3064 | summary_info += {'library directory': get_option('libdir')} |
| 3065 | summary_info += {'module directory': qemu_moddir} |
| 3066 | summary_info += {'libexec directory': get_option('libexecdir')} |
| 3067 | summary_info += {'include directory': get_option('includedir')} |
| 3068 | summary_info += {'config directory': get_option('sysconfdir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3069 | if targetos != 'windows' |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 3070 | summary_info += {'local state directory': get_option('localstatedir')} |
Marc-André Lureau | b81efab | 2020-08-26 15:04:18 +0400 | [diff] [blame] | 3071 | summary_info += {'Manual directory': get_option('mandir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3072 | else |
| 3073 | summary_info += {'local state directory': 'queried at runtime'} |
| 3074 | endif |
Marc-André Lureau | 491e74c | 2020-08-26 15:04:17 +0400 | [diff] [blame] | 3075 | summary_info += {'Doc directory': get_option('docdir')} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3076 | summary_info += {'Build directory': meson.current_build_dir()} |
| 3077 | summary_info += {'Source path': meson.current_source_dir()} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3078 | summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']} |
Philippe Mathieu-Daudé | 983d0a7 | 2021-01-21 10:56:09 +0100 | [diff] [blame] | 3079 | summary(summary_info, bool_yn: true, section: 'Directories') |
| 3080 | |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3081 | # Host binaries |
Philippe Mathieu-Daudé | 983d0a7 | 2021-01-21 10:56:09 +0100 | [diff] [blame] | 3082 | summary_info = {} |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3083 | summary_info += {'git': config_host['GIT']} |
| 3084 | summary_info += {'make': config_host['MAKE']} |
| 3085 | summary_info += {'python': '@0@ (version: @1@)'.format(python.full_path(), python.language_version())} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3086 | summary_info += {'sphinx-build': sphinx_build} |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3087 | if config_host.has_key('HAVE_GDB_BIN') |
| 3088 | summary_info += {'gdb': config_host['HAVE_GDB_BIN']} |
| 3089 | endif |
| 3090 | summary_info += {'genisoimage': config_host['GENISOIMAGE']} |
| 3091 | if targetos == 'windows' and config_host.has_key('CONFIG_GUEST_AGENT') |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3092 | summary_info += {'wixl': wixl} |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3093 | endif |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 3094 | if slirp_opt != 'disabled' and 'CONFIG_SLIRP_SMBD' in config_host |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3095 | summary_info += {'smbd': config_host['CONFIG_SMBD_COMMAND']} |
| 3096 | endif |
| 3097 | summary(summary_info, bool_yn: true, section: 'Host binaries') |
| 3098 | |
Philippe Mathieu-Daudé | 1d71886 | 2021-01-21 10:56:11 +0100 | [diff] [blame] | 3099 | # Configurable features |
| 3100 | summary_info = {} |
| 3101 | summary_info += {'Documentation': build_docs} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3102 | summary_info += {'system-mode emulation': have_system} |
| 3103 | summary_info += {'user-mode emulation': have_user} |
Philippe Mathieu-Daudé | 813803a | 2021-01-21 10:56:14 +0100 | [diff] [blame] | 3104 | summary_info += {'block layer': have_block} |
Philippe Mathieu-Daudé | 1d71886 | 2021-01-21 10:56:11 +0100 | [diff] [blame] | 3105 | summary_info += {'Install blobs': get_option('install_blobs')} |
| 3106 | summary_info += {'module support': config_host.has_key('CONFIG_MODULES')} |
| 3107 | if config_host.has_key('CONFIG_MODULES') |
| 3108 | summary_info += {'alternative module path': config_host.has_key('CONFIG_MODULE_UPGRADES')} |
| 3109 | endif |
Paolo Bonzini | 537b724 | 2021-10-07 15:08:12 +0200 | [diff] [blame] | 3110 | summary_info += {'fuzzing support': get_option('fuzzing')} |
Philippe Mathieu-Daudé | 1d71886 | 2021-01-21 10:56:11 +0100 | [diff] [blame] | 3111 | if have_system |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 3112 | summary_info += {'Audio drivers': ' '.join(audio_drivers_selected)} |
Philippe Mathieu-Daudé | 1d71886 | 2021-01-21 10:56:11 +0100 | [diff] [blame] | 3113 | endif |
Paolo Bonzini | 9c29b74 | 2021-10-07 15:08:14 +0200 | [diff] [blame] | 3114 | summary_info += {'Trace backends': ','.join(get_option('trace_backends'))} |
| 3115 | if 'simple' in get_option('trace_backends') |
| 3116 | summary_info += {'Trace output file': get_option('trace_file') + '-<pid>'} |
Philippe Mathieu-Daudé | 1d71886 | 2021-01-21 10:56:11 +0100 | [diff] [blame] | 3117 | endif |
| 3118 | summary_info += {'QOM debugging': config_host.has_key('CONFIG_QOM_CAST_DEBUG')} |
| 3119 | summary_info += {'vhost-kernel support': config_host.has_key('CONFIG_VHOST_KERNEL')} |
| 3120 | summary_info += {'vhost-net support': config_host.has_key('CONFIG_VHOST_NET')} |
| 3121 | summary_info += {'vhost-crypto support': config_host.has_key('CONFIG_VHOST_CRYPTO')} |
| 3122 | summary_info += {'vhost-scsi support': config_host.has_key('CONFIG_VHOST_SCSI')} |
| 3123 | summary_info += {'vhost-vsock support': config_host.has_key('CONFIG_VHOST_VSOCK')} |
| 3124 | summary_info += {'vhost-user support': config_host.has_key('CONFIG_VHOST_USER')} |
| 3125 | summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server} |
| 3126 | summary_info += {'vhost-user-fs support': config_host.has_key('CONFIG_VHOST_USER_FS')} |
| 3127 | summary_info += {'vhost-vdpa support': config_host.has_key('CONFIG_VHOST_VDPA')} |
| 3128 | summary_info += {'build guest agent': config_host.has_key('CONFIG_GUEST_AGENT')} |
| 3129 | summary(summary_info, bool_yn: true, section: 'Configurable features') |
| 3130 | |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3131 | # Compilation information |
Philippe Mathieu-Daudé | e11a0e1 | 2021-01-21 10:56:10 +0100 | [diff] [blame] | 3132 | summary_info = {} |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3133 | summary_info += {'host CPU': cpu} |
| 3134 | summary_info += {'host endianness': build_machine.endian()} |
Alex Bennée | 63de935 | 2021-05-27 17:03:15 +0100 | [diff] [blame] | 3135 | summary_info += {'C compiler': ' '.join(meson.get_compiler('c').cmd_array())} |
| 3136 | summary_info += {'Host C compiler': ' '.join(meson.get_compiler('c', native: true).cmd_array())} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3137 | if link_language == 'cpp' |
Alex Bennée | 63de935 | 2021-05-27 17:03:15 +0100 | [diff] [blame] | 3138 | summary_info += {'C++ compiler': ' '.join(meson.get_compiler('cpp').cmd_array())} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3139 | else |
| 3140 | summary_info += {'C++ compiler': false} |
| 3141 | endif |
| 3142 | if targetos == 'darwin' |
Alex Bennée | 63de935 | 2021-05-27 17:03:15 +0100 | [diff] [blame] | 3143 | summary_info += {'Objective-C compiler': ' '.join(meson.get_compiler('objc').cmd_array())} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3144 | endif |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3145 | if targetos == 'windows' |
| 3146 | if 'WIN_SDK' in config_host |
| 3147 | summary_info += {'Windows SDK': config_host['WIN_SDK']} |
| 3148 | endif |
| 3149 | endif |
Paolo Bonzini | 47b3083 | 2020-09-23 05:26:17 -0400 | [diff] [blame] | 3150 | summary_info += {'CFLAGS': ' '.join(get_option('c_args') |
| 3151 | + ['-O' + get_option('optimization')] |
| 3152 | + (get_option('debug') ? ['-g'] : []))} |
| 3153 | if link_language == 'cpp' |
| 3154 | summary_info += {'CXXFLAGS': ' '.join(get_option('cpp_args') |
| 3155 | + ['-O' + get_option('optimization')] |
| 3156 | + (get_option('debug') ? ['-g'] : []))} |
| 3157 | endif |
| 3158 | link_args = get_option(link_language + '_link_args') |
| 3159 | if link_args.length() > 0 |
| 3160 | summary_info += {'LDFLAGS': ' '.join(link_args)} |
| 3161 | endif |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3162 | summary_info += {'QEMU_CFLAGS': config_host['QEMU_CFLAGS']} |
| 3163 | summary_info += {'QEMU_LDFLAGS': config_host['QEMU_LDFLAGS']} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3164 | summary_info += {'profiler': config_host.has_key('CONFIG_PROFILER')} |
Daniele Buono | cdad781 | 2020-12-04 18:06:11 -0500 | [diff] [blame] | 3165 | summary_info += {'link-time optimization (LTO)': get_option('b_lto')} |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3166 | summary_info += {'PIE': get_option('b_pie')} |
Laurent Vivier | 3e8529d | 2020-09-17 16:07:00 +0200 | [diff] [blame] | 3167 | summary_info += {'static build': config_host.has_key('CONFIG_STATIC')} |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3168 | summary_info += {'malloc trim support': has_malloc_trim} |
| 3169 | summary_info += {'membarrier': config_host.has_key('CONFIG_MEMBARRIER')} |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3170 | summary_info += {'debug stack usage': config_host.has_key('CONFIG_DEBUG_STACK_USAGE')} |
| 3171 | summary_info += {'mutex debugging': config_host.has_key('CONFIG_DEBUG_MUTEX')} |
| 3172 | summary_info += {'memory allocator': get_option('malloc')} |
| 3173 | summary_info += {'avx2 optimization': config_host.has_key('CONFIG_AVX2_OPT')} |
| 3174 | summary_info += {'avx512f optimization': config_host.has_key('CONFIG_AVX512F_OPT')} |
| 3175 | summary_info += {'gprof enabled': config_host.has_key('CONFIG_GPROF')} |
| 3176 | summary_info += {'gcov': get_option('b_coverage')} |
| 3177 | summary_info += {'thread sanitizer': config_host.has_key('CONFIG_TSAN')} |
| 3178 | summary_info += {'CFI support': get_option('cfi')} |
| 3179 | if get_option('cfi') |
| 3180 | summary_info += {'CFI debug support': get_option('cfi_debug')} |
| 3181 | endif |
| 3182 | summary_info += {'strip binaries': get_option('strip')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3183 | summary_info += {'sparse': sparse} |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3184 | summary_info += {'mingw32 support': targetos == 'windows'} |
Alex Bennée | 49e8565 | 2021-02-22 10:14:50 +0000 | [diff] [blame] | 3185 | |
| 3186 | # snarf the cross-compilation information for tests |
| 3187 | foreach target: target_dirs |
| 3188 | tcg_mak = meson.current_build_dir() / 'tests/tcg' / 'config-' + target + '.mak' |
| 3189 | if fs.exists(tcg_mak) |
| 3190 | config_cross_tcg = keyval.load(tcg_mak) |
| 3191 | target = config_cross_tcg['TARGET_NAME'] |
| 3192 | compiler = '' |
| 3193 | if 'DOCKER_CROSS_CC_GUEST' in config_cross_tcg |
| 3194 | summary_info += {target + ' tests': config_cross_tcg['DOCKER_CROSS_CC_GUEST'] + |
| 3195 | ' via ' + config_cross_tcg['DOCKER_IMAGE']} |
| 3196 | elif 'CROSS_CC_GUEST' in config_cross_tcg |
| 3197 | summary_info += {target + ' tests' |
| 3198 | : config_cross_tcg['CROSS_CC_GUEST'] } |
| 3199 | endif |
| 3200 | endif |
| 3201 | endforeach |
| 3202 | |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3203 | summary(summary_info, bool_yn: true, section: 'Compilation') |
| 3204 | |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3205 | # Targets and accelerators |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3206 | summary_info = {} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3207 | if have_system |
| 3208 | summary_info += {'KVM support': config_all.has_key('CONFIG_KVM')} |
| 3209 | summary_info += {'HAX support': config_all.has_key('CONFIG_HAX')} |
| 3210 | summary_info += {'HVF support': config_all.has_key('CONFIG_HVF')} |
| 3211 | summary_info += {'WHPX support': config_all.has_key('CONFIG_WHPX')} |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 3212 | summary_info += {'NVMM support': config_all.has_key('CONFIG_NVMM')} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3213 | summary_info += {'Xen support': config_host.has_key('CONFIG_XEN_BACKEND')} |
| 3214 | if config_host.has_key('CONFIG_XEN_BACKEND') |
| 3215 | summary_info += {'xen ctrl version': config_host['CONFIG_XEN_CTRL_INTERFACE_VERSION']} |
| 3216 | endif |
| 3217 | endif |
| 3218 | summary_info += {'TCG support': config_all.has_key('CONFIG_TCG')} |
| 3219 | if config_all.has_key('CONFIG_TCG') |
Philippe Mathieu-Daudé | 39687ac | 2021-01-25 15:45:29 +0100 | [diff] [blame] | 3220 | if get_option('tcg_interpreter') |
| 3221 | summary_info += {'TCG backend': 'TCI (TCG with bytecode interpreter, experimental and slow)'} |
| 3222 | else |
| 3223 | summary_info += {'TCG backend': 'native (@0@)'.format(cpu)} |
| 3224 | endif |
Alex Bennée | 029aa68 | 2021-07-09 15:29:53 +0100 | [diff] [blame] | 3225 | summary_info += {'TCG plugins': config_host.has_key('CONFIG_PLUGIN')} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3226 | summary_info += {'TCG debug enabled': config_host.has_key('CONFIG_DEBUG_TCG')} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3227 | endif |
Philippe Mathieu-Daudé | 2e864b8 | 2021-01-21 10:56:12 +0100 | [diff] [blame] | 3228 | summary_info += {'target list': ' '.join(target_dirs)} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3229 | if have_system |
| 3230 | summary_info += {'default devices': get_option('default_devices')} |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 3231 | summary_info += {'out of process emulation': multiprocess_allowed} |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3232 | endif |
| 3233 | summary(summary_info, bool_yn: true, section: 'Targets and accelerators') |
| 3234 | |
Philippe Mathieu-Daudé | 813803a | 2021-01-21 10:56:14 +0100 | [diff] [blame] | 3235 | # Block layer |
| 3236 | summary_info = {} |
| 3237 | summary_info += {'coroutine backend': config_host['CONFIG_COROUTINE_BACKEND']} |
| 3238 | summary_info += {'coroutine pool': config_host['CONFIG_COROUTINE_POOL'] == '1'} |
| 3239 | if have_block |
| 3240 | summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']} |
| 3241 | summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']} |
Kevin Wolf | e5f05f8 | 2021-07-09 18:41:41 +0200 | [diff] [blame] | 3242 | summary_info += {'Use block whitelist in tools': config_host.has_key('CONFIG_BDRV_WHITELIST_TOOLS')} |
Philippe Mathieu-Daudé | 813803a | 2021-01-21 10:56:14 +0100 | [diff] [blame] | 3243 | summary_info += {'VirtFS support': have_virtfs} |
| 3244 | summary_info += {'build virtiofs daemon': have_virtiofsd} |
| 3245 | summary_info += {'Live block migration': config_host.has_key('CONFIG_LIVE_BLOCK_MIGRATION')} |
| 3246 | summary_info += {'replication support': config_host.has_key('CONFIG_REPLICATION')} |
| 3247 | summary_info += {'bochs support': config_host.has_key('CONFIG_BOCHS')} |
| 3248 | summary_info += {'cloop support': config_host.has_key('CONFIG_CLOOP')} |
| 3249 | summary_info += {'dmg support': config_host.has_key('CONFIG_DMG')} |
| 3250 | summary_info += {'qcow v1 support': config_host.has_key('CONFIG_QCOW1')} |
| 3251 | summary_info += {'vdi support': config_host.has_key('CONFIG_VDI')} |
| 3252 | summary_info += {'vvfat support': config_host.has_key('CONFIG_VVFAT')} |
| 3253 | summary_info += {'qed support': config_host.has_key('CONFIG_QED')} |
| 3254 | summary_info += {'parallels support': config_host.has_key('CONFIG_PARALLELS')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3255 | summary_info += {'FUSE exports': fuse} |
Philippe Mathieu-Daudé | 813803a | 2021-01-21 10:56:14 +0100 | [diff] [blame] | 3256 | endif |
| 3257 | summary(summary_info, bool_yn: true, section: 'Block layer support') |
| 3258 | |
Philippe Mathieu-Daudé | aa58028 | 2021-01-21 10:56:15 +0100 | [diff] [blame] | 3259 | # Crypto |
Philippe Mathieu-Daudé | aa3ca63 | 2021-01-21 10:56:13 +0100 | [diff] [blame] | 3260 | summary_info = {} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3261 | summary_info += {'TLS priority': config_host['CONFIG_TLS_PRIORITY']} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3262 | summary_info += {'GNUTLS support': gnutls} |
| 3263 | if gnutls.found() |
| 3264 | summary_info += {' GNUTLS crypto': gnutls_crypto.found()} |
| 3265 | endif |
| 3266 | summary_info += {'libgcrypt': gcrypt} |
| 3267 | summary_info += {'nettle': nettle} |
Paolo Bonzini | 5761251 | 2021-06-03 11:15:26 +0200 | [diff] [blame] | 3268 | if nettle.found() |
| 3269 | summary_info += {' XTS': xts != 'private'} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3270 | endif |
Philippe Mathieu-Daudé | aa58028 | 2021-01-21 10:56:15 +0100 | [diff] [blame] | 3271 | summary_info += {'crypto afalg': config_host.has_key('CONFIG_AF_ALG')} |
| 3272 | summary_info += {'rng-none': config_host.has_key('CONFIG_RNG_NONE')} |
| 3273 | summary_info += {'Linux keyring': config_host.has_key('CONFIG_SECRET_KEYRING')} |
| 3274 | summary(summary_info, bool_yn: true, section: 'Crypto') |
| 3275 | |
Philippe Mathieu-Daudé | 69a78cc | 2021-01-21 10:56:16 +0100 | [diff] [blame] | 3276 | # Libraries |
Philippe Mathieu-Daudé | aa58028 | 2021-01-21 10:56:15 +0100 | [diff] [blame] | 3277 | summary_info = {} |
| 3278 | if targetos == 'darwin' |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3279 | summary_info += {'Cocoa support': cocoa} |
Philippe Mathieu-Daudé | aa58028 | 2021-01-21 10:56:15 +0100 | [diff] [blame] | 3280 | endif |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3281 | summary_info += {'SDL support': sdl} |
| 3282 | summary_info += {'SDL image support': sdl_image} |
| 3283 | summary_info += {'GTK support': gtk} |
| 3284 | summary_info += {'pixman': pixman} |
| 3285 | summary_info += {'VTE support': vte} |
| 3286 | summary_info += {'slirp support': slirp_opt == 'internal' ? slirp_opt : slirp} |
| 3287 | summary_info += {'libtasn1': tasn1} |
| 3288 | summary_info += {'PAM': pam} |
| 3289 | summary_info += {'iconv support': iconv} |
| 3290 | summary_info += {'curses support': curses} |
| 3291 | summary_info += {'virgl support': virgl} |
| 3292 | summary_info += {'curl support': curl} |
| 3293 | summary_info += {'Multipath support': mpathpersist} |
| 3294 | summary_info += {'VNC support': vnc} |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 3295 | if vnc.found() |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3296 | summary_info += {'VNC SASL support': sasl} |
| 3297 | summary_info += {'VNC JPEG support': jpeg} |
| 3298 | summary_info += {'VNC PNG support': png} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3299 | endif |
Paolo Bonzini | 87430d5 | 2021-10-07 15:06:09 +0200 | [diff] [blame] | 3300 | if targetos not in ['darwin', 'haiku', 'windows'] |
| 3301 | summary_info += {'OSS support': oss} |
| 3302 | elif targetos == 'darwin' |
| 3303 | summary_info += {'CoreAudio support': coreaudio} |
| 3304 | elif targetos == 'windows' |
| 3305 | summary_info += {'DirectSound support': dsound} |
| 3306 | endif |
| 3307 | if targetos == 'linux' |
| 3308 | summary_info += {'ALSA support': alsa} |
| 3309 | summary_info += {'PulseAudio support': pulse} |
| 3310 | endif |
| 3311 | summary_info += {'JACK support': jack} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3312 | summary_info += {'brlapi support': brlapi} |
Paolo Bonzini | e172399 | 2021-10-07 15:08:21 +0200 | [diff] [blame^] | 3313 | summary_info += {'vde support': vde} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3314 | summary_info += {'netmap support': config_host.has_key('CONFIG_NETMAP')} |
Paolo Bonzini | ff66f3e | 2021-10-07 15:08:20 +0200 | [diff] [blame] | 3315 | summary_info += {'Linux AIO support': libaio} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3316 | summary_info += {'Linux io_uring support': linux_io_uring} |
| 3317 | summary_info += {'ATTR/XATTR support': libattr} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3318 | summary_info += {'RDMA support': config_host.has_key('CONFIG_RDMA')} |
| 3319 | summary_info += {'PVRDMA support': config_host.has_key('CONFIG_PVRDMA')} |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 3320 | summary_info += {'fdt support': fdt_opt == 'disabled' ? false : fdt_opt} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3321 | summary_info += {'libcap-ng support': libcap_ng} |
| 3322 | summary_info += {'bpf support': libbpf} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3323 | # TODO: add back protocol and server version |
| 3324 | summary_info += {'spice support': config_host.has_key('CONFIG_SPICE')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3325 | summary_info += {'rbd support': rbd} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3326 | summary_info += {'xfsctl support': config_host.has_key('CONFIG_XFS')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3327 | summary_info += {'smartcard support': cacard} |
| 3328 | summary_info += {'U2F support': u2f} |
| 3329 | summary_info += {'libusb': libusb} |
| 3330 | summary_info += {'usb net redir': usbredir} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3331 | summary_info += {'OpenGL support': config_host.has_key('CONFIG_OPENGL')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3332 | summary_info += {'GBM': gbm} |
| 3333 | summary_info += {'libiscsi support': libiscsi} |
| 3334 | summary_info += {'libnfs support': libnfs} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3335 | if targetos == 'windows' |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 3336 | if config_host.has_key('CONFIG_GUEST_AGENT') |
| 3337 | summary_info += {'QGA VSS support': config_host.has_key('CONFIG_QGA_VSS')} |
| 3338 | summary_info += {'QGA w32 disk info': config_host.has_key('CONFIG_QGA_NTDDSCSI')} |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 3339 | endif |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3340 | endif |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3341 | summary_info += {'seccomp support': seccomp} |
| 3342 | summary_info += {'GlusterFS support': glusterfs} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3343 | summary_info += {'TPM support': config_host.has_key('CONFIG_TPM')} |
| 3344 | summary_info += {'libssh support': config_host.has_key('CONFIG_LIBSSH')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3345 | summary_info += {'lzo support': lzo} |
| 3346 | summary_info += {'snappy support': snappy} |
| 3347 | summary_info += {'bzip2 support': libbzip2} |
| 3348 | summary_info += {'lzfse support': liblzfse} |
| 3349 | summary_info += {'zstd support': zstd} |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3350 | summary_info += {'NUMA host support': config_host.has_key('CONFIG_NUMA')} |
Paolo Bonzini | bb647c4 | 2021-06-03 11:24:56 +0200 | [diff] [blame] | 3351 | summary_info += {'libxml2': libxml2} |
| 3352 | summary_info += {'capstone': capstone_opt == 'internal' ? capstone_opt : capstone} |
| 3353 | summary_info += {'libpmem support': libpmem} |
| 3354 | summary_info += {'libdaxctl support': libdaxctl} |
| 3355 | summary_info += {'libudev': libudev} |
| 3356 | # Dummy dependency, keep .found() |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 3357 | summary_info += {'FUSE lseek': fuse_lseek.found()} |
Philippe Mathieu-Daudé | 69a78cc | 2021-01-21 10:56:16 +0100 | [diff] [blame] | 3358 | summary(summary_info, bool_yn: true, section: 'Dependencies') |
Paolo Bonzini | f933275 | 2020-02-03 13:28:38 +0100 | [diff] [blame] | 3359 | |
| 3360 | if not supported_cpus.contains(cpu) |
| 3361 | message() |
| 3362 | warning('SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!') |
| 3363 | message() |
| 3364 | message('CPU host architecture ' + cpu + ' support is not currently maintained.') |
| 3365 | message('The QEMU project intends to remove support for this host CPU in') |
| 3366 | message('a future release if nobody volunteers to maintain it and to') |
| 3367 | message('provide a build host for our continuous integration setup.') |
| 3368 | message('configure has succeeded and you can continue to build, but') |
| 3369 | message('if you care about QEMU on this platform you should contact') |
| 3370 | message('us upstream at qemu-devel@nongnu.org.') |
| 3371 | endif |
| 3372 | |
| 3373 | if not supported_oses.contains(targetos) |
| 3374 | message() |
| 3375 | warning('WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!') |
| 3376 | message() |
| 3377 | message('Host OS ' + targetos + 'support is not currently maintained.') |
| 3378 | message('The QEMU project intends to remove support for this host OS in') |
| 3379 | message('a future release if nobody volunteers to maintain it and to') |
| 3380 | message('provide a build host for our continuous integration setup.') |
| 3381 | message('configure has succeeded and you can continue to build, but') |
| 3382 | message('if you care about QEMU on this platform you should contact') |
| 3383 | message('us upstream at qemu-devel@nongnu.org.') |
| 3384 | endif |