diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-08 12:06:12 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-12-31 09:11:28 +0100 |
commit | ea444d91e56f8d4917affd6eed593a8fac7dca08 (patch) | |
tree | a61b6adcd87bfcaf6b60b2fe974c7435349226a6 /meson.build | |
parent | d3322023bfef4dab955aaa9ea114a3e6d06a8752 (diff) |
meson: add more sections to main meson.build
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/meson.build b/meson.build index 6c77d9687d..c437e9f55e 100644 --- a/meson.build +++ b/meson.build @@ -9,6 +9,10 @@ add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough']) meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) +#################### +# Global variables # +#################### + not_found = dependency('', required: false) keyval = import('keyval') ss = import('sourceset') @@ -86,8 +90,16 @@ enable_modules = get_option('modules') \ .allowed() have_block = have_system or have_tools +############ +# Programs # +############ + python = import('python').find_installation() +####################################### +# Variables for host and accelerators # +####################################### + if cpu not in supported_cpus host_arch = 'unknown' elif cpu == 'x86' @@ -518,9 +530,9 @@ if sparse.found() '-Wno-non-pointer-null']) endif -########################################### -# Target-specific checks and dependencies # -########################################### +##################### +# Option validation # +##################### # Fuzzing if get_option('fuzzing') and get_option('fuzzing_engine') == '' and \ @@ -3524,9 +3536,9 @@ specific_ss.add_all(when: 'CONFIG_TCG_BUILTIN', if_true: tcg_module_ss) target_modules += { 'accel' : { 'qtest': qtest_module_ss, 'tcg': tcg_real_module_ss }} -######################## -# Library dependencies # -######################## +############################################## +# Internal static_libraries and dependencies # +############################################## modinfo_collect = find_program('scripts/modinfo-collect.py') modinfo_generate = find_program('scripts/modinfo-generate.py') |