We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9621add commit 68bc4c8Copy full SHA for 68bc4c8
cli/src/util/prereqs.rs
@@ -20,8 +20,8 @@ lazy_static! {
20
static ref GENERIC_VERSION_RE: Regex = Regex::new(r"^([0-9]+)\.([0-9]+)$").unwrap();
21
static ref LIBSTD_CXX_VERSION_RE: BinRegex =
22
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);
+ static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 25);
+ static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 28, 0);
25
}
26
27
const NIXOS_TEST_PATH: &str = "/etc/NIXOS";
0 commit comments