mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 17:19:01 +01:00
fix: revert remote libcxx requirement to 3.4.25 (#248976)
* fix: revert libcxx requirement to 3.4.25 * ci: temp debugging * fix: use gcc 8.5.0 for remote * ci: update cache * ci: fix sysroot directory * ci: fix objdump directory
This commit is contained in:
@@ -20,9 +20,18 @@ lazy_static! {
|
||||
static ref LIBSTD_CXX_VERSION_RE: BinRegex =
|
||||
BinRegex::new(r"GLIBCXX_([0-9]+)\.([0-9]+)(?:\.([0-9]+))?").unwrap();
|
||||
static ref MIN_LDD_VERSION: SimpleSemver = SimpleSemver::new(2, 28, 0);
|
||||
}
|
||||
|
||||
#[cfg(target_arch = "arm")]
|
||||
lazy_static! {
|
||||
static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 26);
|
||||
}
|
||||
|
||||
#[cfg(not(target_arch = "arm"))]
|
||||
lazy_static! {
|
||||
static ref MIN_CXX_VERSION: SimpleSemver = SimpleSemver::new(3, 4, 25);
|
||||
}
|
||||
|
||||
const NIXOS_TEST_PATH: &str = "/etc/NIXOS";
|
||||
|
||||
pub struct PreReqChecker {}
|
||||
|
||||
Reference in New Issue
Block a user