From: Pierrick Bouvier <[email protected]> Without it, we'll get the following warning: WARNING: Project specifies a minimum meson_version '>=1.5.0' but uses features which were added in newer versions: * 1.6.0: {'test with external_program in args'}
Which we require because of how we build iteratively our test command line. Tested-by: Aniket Sahu <[email protected]> Reviewed-by: Alex Bennée <[email protected]> Signed-off-by: Pierrick Bouvier <[email protected]> Message-ID: <[email protected]> Signed-off-by: Alex Bennée <[email protected]> diff --git a/meson.build b/meson.build index 5c9de307b08..0a64bcfc6e9 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('qemu', ['c'], meson_version: '>=1.5.0', +project('qemu', ['c'], meson_version: '>=1.6.0', default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++23', 'b_colorout=auto', 'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'] + diff --git a/pythondeps.toml b/pythondeps.toml index f0f3af915a1..e4c10d4a9f7 100644 --- a/pythondeps.toml +++ b/pythondeps.toml @@ -19,7 +19,7 @@ [meson] # The install key should match the version in python/wheels/ -meson = { accepted = ">=1.5.0", installed = "1.12.0", canary = "meson" } +meson = { accepted = ">=1.6.0", installed = "1.12.0", canary = "meson" } pycotap = { accepted = ">=1.1.0", installed = "1.3.1" } [meson-rust] -- 2.47.3
