File tree Expand file tree Collapse file tree 3 files changed +10
-15
lines changed
src/tools/miri/cargo-miri Expand file tree Collapse file tree 3 files changed +10
-15
lines changed Original file line number Diff line number Diff line change @@ -701,7 +701,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
701
701
checksum = " 117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
702
702
dependencies = [
703
703
" lazy_static" ,
704
- " windows-sys 0.59 .0" ,
704
+ " windows-sys 0.48 .0" ,
705
705
]
706
706
707
707
[[package ]]
@@ -1147,7 +1147,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
1147
checksum = " 976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1148
1148
dependencies = [
1149
1149
" libc" ,
1150
- " windows-sys 0.59 .0" ,
1150
+ " windows-sys 0.52 .0" ,
1151
1151
]
1152
1152
1153
1153
[[package ]]
@@ -3119,10 +3119,10 @@ dependencies = [
3119
3119
[[package ]]
3120
3120
name = " rustc-build-sysroot"
3121
3121
version = " 0.5.7"
3122
- source = " registry+https://github.com/rust-lang/crates.io-index"
3123
- checksum = " 10edc2e4393515193bd766e2f6c050b0536a68e56f2b6d56c07ababfdc114ff0"
3122
+ source = " git+https://github.com/tgross35/rustc-build-sysroot?branch=patch-compiler-builtins#4793aabe776bdfb736558fcea91054af22751997"
3124
3123
dependencies = [
3125
3124
" anyhow" ,
3125
+ " regex" ,
3126
3126
" rustc_version" ,
3127
3127
" tempfile" ,
3128
3128
" walkdir" ,
@@ -4749,7 +4749,7 @@ dependencies = [
4749
4749
" errno" ,
4750
4750
" libc" ,
4751
4751
" linux-raw-sys" ,
4752
- " windows-sys 0.59 .0" ,
4752
+ " windows-sys 0.52 .0" ,
4753
4753
]
4754
4754
4755
4755
[[package ]]
@@ -4995,7 +4995,7 @@ dependencies = [
4995
4995
" cfg-if" ,
4996
4996
" libc" ,
4997
4997
" psm" ,
4998
- " windows-sys 0.59 .0" ,
4998
+ " windows-sys 0.52 .0" ,
4999
4999
]
5000
5000
5001
5001
[[package ]]
@@ -5138,7 +5138,7 @@ dependencies = [
5138
5138
" getrandom 0.3.3" ,
5139
5139
" once_cell" ,
5140
5140
" rustix" ,
5141
- " windows-sys 0.59 .0" ,
5141
+ " windows-sys 0.52 .0" ,
5142
5142
]
5143
5143
5144
5144
[[package ]]
@@ -5995,7 +5995,7 @@ version = "0.1.9"
5995
5995
source = " registry+https://github.com/rust-lang/crates.io-index"
5996
5996
checksum = " cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
5997
5997
dependencies = [
5998
- " windows-sys 0.59 .0" ,
5998
+ " windows-sys 0.48 .0" ,
5999
5999
]
6000
6000
6001
6001
[[package ]]
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ directories = "6"
18
18
rustc_version = " 0.4"
19
19
serde_json = " 1.0.40"
20
20
cargo_metadata = " 0.19"
21
- rustc-build-sysroot = " 0.5.7"
21
+ # rustc-build-sysroot = "0.5.7"
22
+ rustc-build-sysroot = { git = " https://github.com/tgross35/rustc-build-sysroot" , branch = " patch-compiler-builtins" }
22
23
23
24
# Enable some feature flags that dev-dependencies need but dependencies
24
25
# do not. This makes `./miri install` after `./miri build` faster.
Original file line number Diff line number Diff line change @@ -128,12 +128,6 @@ pub fn setup(
128
128
}
129
129
}
130
130
131
- command. arg ( & format ! (
132
- "--config=patch.crates-io.compiler_builtins.path=\
133
- '{}/compiler-builtins/compiler-builtins'",
134
- rust_src. display( ) ,
135
- ) ) ;
136
-
137
131
command
138
132
} ;
139
133
// Disable debug assertions in the standard library -- Miri is already slow enough.
You can’t perform that action at this time.
0 commit comments