Skip to content

Commit

Permalink
Adjust cfg.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasSte committed Aug 8, 2024
1 parent 65d7cc8 commit bc5bad9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
[[package]]
name = "compiler_builtins"
version = "0.1.112"
source = "git+https://github.com/LucasSte/compiler-builtins?tag=lucas-v1.42#d328c21d7545b0f793dec0b2435be13050146f67"
source = "git+https://github.com/LucasSte/compiler-builtins?tag=lucas-v1.42#4b298d1cbe7e4474767b7da4a222664fc053786a"
dependencies = [
"cc",
"rustc-std-workspace-core",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const KNOWN_ARCH: [&str; 20] = [

const KNOWN_ENV: [&str; 7] = ["eabihf", "gnu", "gnueabihf", "msvc", "relibc", "sgx", "uclibc"];

const KNOWN_OS: [&str; 20] = [
const KNOWN_OS: [&str; 21] = [
"cuda",
"dragonfly",
"emscripten",
Expand All @@ -95,7 +95,7 @@ const KNOWN_OS: [&str; 20] = [
"psp",
"redox",
"solaris",
"solana"
"solana",
"uefi",
"unknown",
"vxworks",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/src/extdeps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::path::Path;

/// List of allowed sources for packages.
const ALLOWED_SOURCES: &[&str] = &["\"registry+https://github.com/rust-lang/crates.io-index\"",
"\"git+https://github.com/LucasSte/compiler-builtins?tag=lucas-v1.42#d328c21d7545b0f793dec0b2435be13050146f67\""];
"\"git+https://github.com/LucasSte/compiler-builtins?tag=lucas-v1.42#4b298d1cbe7e4474767b7da4a222664fc053786a\""];

/// Checks for external package sources. `root` is the path to the directory that contains the
/// workspace `Cargo.toml`.
Expand Down

0 comments on commit bc5bad9

Please sign in to comment.