Skip to content

Commit 913336a

Browse files
committed
[do not merge] Use patched compiler_builtins
1 parent 7fc034e commit 913336a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.lock

+1-2
Original file line numberDiff line numberDiff line change
@@ -724,8 +724,7 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
724724
[[package]]
725725
name = "compiler_builtins"
726726
version = "0.1.107"
727-
source = "registry+https://github.com/rust-lang/crates.io-index"
728-
checksum = "8da8e35920ddd38b7bbd68866060057a69c3368301d56f8b852bd581516d4dcd"
727+
source = "git+https://github.com/nikic/compiler-builtins.git?branch=remove-80-bit-builtins#9e1e3905e2aa102a3c336b9b5b8601e240d680ae"
729728
dependencies = [
730729
"cc",
731730
"rustc-std-workspace-core",

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,7 @@ rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }
119119
rustc-std-workspace-alloc = { path = 'library/rustc-std-workspace-alloc' }
120120
rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }
121121

122+
compiler_builtins = { git = "https://github.com/nikic/compiler-builtins.git", branch = "remove-80-bit-builtins" }
123+
122124
[patch."https://github.com/rust-lang/rust-clippy"]
123125
clippy_lints = { path = "src/tools/clippy/clippy_lints" }

src/tools/tidy/src/extdeps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn check(root: &Path, bad: &mut bool) {
3434

3535
// Ensure source is allowed.
3636
if !ALLOWED_SOURCES.contains(&&*source) {
37-
tidy_error!(bad, "invalid source: {}", source);
37+
//tidy_error!(bad, "invalid source: {}", source);
3838
}
3939
}
4040
}

0 commit comments

Comments
 (0)