From 68bc4c82c8341dd5f060e6b4f96be24bf7933840 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Tue, 19 Dec 2023 21:27:09 -0800 Subject: [PATCH] cli: update server prereq versions (#201261) Fixes #201129 --- cli/src/util/prereqs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/util/prereqs.rs b/cli/src/util/prereqs.rs index d8cbd1b91dd..dfb68c48afe 100644 --- a/cli/src/util/prereqs.rs +++ b/cli/src/util/prereqs.rs @@ -20,8 +20,8 @@ lazy_static! { static ref GENERIC_VERSION_RE: Regex = Regex::new(r"^([0-9]+)\.([0-9]+)$").unwrap(); static ref LIBSTD_CXX_VERSION_RE: BinRegex = BinRegex::new(r"GLIBCXX_([0-9]+)\.([0-9]+)(?:\.([0-9]+))?").unwrap(); - static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 18); - static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 17, 0); + static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 25); + static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 28, 0); } const NIXOS_TEST_PATH: &str = "/etc/NIXOS";