Skip to content

Commit 68bc4c8

Browse files
authored
cli: update server prereq versions (microsoft#201261)
Fixes microsoft#201129
1 parent 9621add commit 68bc4c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/util/prereqs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ lazy_static! {
2020
static ref GENERIC_VERSION_RE: Regex = Regex::new(r"^([0-9]+)\.([0-9]+)$").unwrap();
2121
static ref LIBSTD_CXX_VERSION_RE: BinRegex =
2222
BinRegex::new(r"GLIBCXX_([0-9]+)\.([0-9]+)(?:\.([0-9]+))?").unwrap();
23-
static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 18);
24-
static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 17, 0);
23+
static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 25);
24+
static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 28, 0);
2525
}
2626

2727
const NIXOS_TEST_PATH: &str = "/etc/NIXOS";

0 commit comments

Comments
 (0)