Skip to content

Commit

Permalink
[do not merge] Use patched compiler_builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Feb 5, 2024
1 parent 98650c2 commit d8d62e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -724,8 +724,7 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
[[package]]
name = "compiler_builtins"
version = "0.1.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da8e35920ddd38b7bbd68866060057a69c3368301d56f8b852bd581516d4dcd"
source = "git+https://github.com/nikic/compiler-builtins.git?branch=remove-80-bit-builtins#9e1e3905e2aa102a3c336b9b5b8601e240d680ae"
dependencies = [
"cc",
"rustc-std-workspace-core",
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,7 @@ rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }
rustc-std-workspace-alloc = { path = 'library/rustc-std-workspace-alloc' }
rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }

compiler_builtins = { git = "https://github.com/nikic/compiler-builtins.git", branch = "remove-80-bit-builtins" }

[patch."https://github.com/rust-lang/rust-clippy"]
clippy_lints = { path = "src/tools/clippy/clippy_lints" }
2 changes: 1 addition & 1 deletion src/tools/tidy/src/extdeps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub fn check(root: &Path, bad: &mut bool) {

// Ensure source is allowed.
if !ALLOWED_SOURCES.contains(&&*source) {
tidy_error!(bad, "invalid source: {}", source);
//tidy_error!(bad, "invalid source: {}", source);
}
}
}
Expand Down

0 comments on commit d8d62e3

Please sign in to comment.