From 280dde8c23cd83684d8a6b6d8e6352d3ea39e7a3 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Mon, 11 Dec 2023 13:50:45 +0100 Subject: [PATCH] rusticl: bump meson req Signed-off-by: Karol Herbst Part-of: --- docs/rusticl.rst | 2 +- meson.build | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/rusticl.rst b/docs/rusticl.rst index f6997294a1e..213f24334b3 100644 --- a/docs/rusticl.rst +++ b/docs/rusticl.rst @@ -30,7 +30,7 @@ To build Rusticl you need to satisfy the following build dependencies: The minimum versions to build Rusticl are: - Rust: 1.66 -- Meson: 1.2.0 +- Meson: 1.3.0 - Bindgen: 0.62.0 - LLVM: 11.0.0 (recommended: 15.0.0) - Clang: 11.0.0 (recommended: 15.0.0) diff --git a/meson.build b/meson.build index 552ff196aa8..e7edba1a2d3 100644 --- a/meson.build +++ b/meson.build @@ -813,8 +813,8 @@ if with_gallium_rusticl error('rusticl requires at least one gallium driver.') endif - if meson.version().version_compare('< 1.2') - error('rusticl requires meson 1.2.0 or newer') + if meson.version().version_compare('< 1.3') + error('rusticl requires meson 1.3.0 or newer') endif add_languages('rust', required: true)