-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Subtree update of rust-analyzer
#117701
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Subtree update of rust-analyzer
#117701
Changes from all commits
940d87b
2de62be
23ffda1
6afa5b0
6b487ed
d7a8e80
59738d5
83196fd
91ac1d6
455dacf
136a9db
2e13aed
7ba2e13
5683df2
68d24b6
38491fc
9c62571
b316bcc
a66dbd1
2fdf7e4
25b1b3e
0863024
893e191
145a101
d794865
df1239b
2974416
ebbbaaa
0bb2298
96c3332
f4704bc
24b6922
cac796a
c372431
cdaadb6
22b18b9
1841192
f9fac02
0427a23
3a63255
4b3257a
00e238e
f671b0b
6212182
2b891ca
4778255
1e11a55
dd84306
d6fef2c
91b012f
60f7473
ea11846
c22bb03
fccae08
11ffcc0
93562dd
2ededa2
df75809
5855bd8
609bdbc
556f0c6
8ad536f
695a134
4a8622c
0a91a54
622e1a8
132a6ce
59bcbaf
ba7f2bf
8139e8e
2b580a1
fc258de
9f3d627
10fae62
e5e937a
7834b8f
ab52ba2
588c7d9
862a300
7306504
963ba59
972a19f
f64eecd
85ead6e
d3cc3bc
bce4be9
73150c3
6ca48d9
0dbde71
b0fe99f
c945f90
3b1b58c
6c907e1
5b04a7d
f93b6ac
2b9dde1
b3f4574
791e6c8
f19479a
1b3e5b2
87e2c31
a382e64
50678e0
dfeff9f
1752178
53f5c1c
e478db7
a943b19
547bcf8
dd8ea97
ae5d74d
4791a5d
af28458
0840038
40f80e2
2611fbf
146a7cc
34d3490
084ee93
d7faec8
4c9d2c7
7c113ee
7b8330f
a8ec77d
fe39816
36be913
c266387
7e9da40
ad73597
9ba8dbc
ab091b7
b57658d
695c612
4af730e
58239f2
e7295ff
54866a0
fd39a30
03c5603
114f8a0
a158670
88a00bf
ef58843
b3ebc9a
b1f89a8
c5d9bfa
3dfc1bf
7e9b25b
aeef7b6
53b6700
ef0b3bb
3682c37
2290cc3
9771e1e
a39d207
d646ae8
0c4be03
dca63d1
ab62c01
aaa1e8e
e8372e0
36eac9a
8a23314
a7fada4
1fe6ac8
f58a825
c387361
677e6f3
e1aeb7f
2e713a7
b769f34
7eec17e
4b281ff
6845c80
3605bb3
84e1d27
506b1e5
5bbca22
862693f
bc34e8f
3f4368a
16ac6c2
8217ff9
dbe5392
65532e4
d33fd15
a8581aa
40acc52
6572ec8
03bec11
983094a
222be48
03f676e
490cdfe
2910dbf
d6afb4f
1a0fe58
7f1e6fd
4296fe5
4586a6b
a7f77d8
94eb142
0cae1ca
bd38871
954fb1d
094cecd
7c11399
4f5f7e2
8b82ea4
1087295
45ee88f
2f6961a
99ec3aa
46c395d
00cdbe6
7186a28
f493207
9c99afe
16f3398
9d290f1
a2e2881
a723acf
929544e
99e94d2
740a864
b76f2c8
11a263d
1b7bb9a
fccdde6
0fec61a
19bf0da
6943228
8d8d121
b84940b
c1c9e10
13249b7
2a48432
1086b29
3b7c7f9
626bd33
89a3fd4
01422d1
636a6f7
c2c065c
6ad73f5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -369,7 +369,7 @@ impl Step for RustAnalyzer { | |
|
||
// We don't need to build the whole Rust Analyzer for the proc-macro-srv test suite, | ||
// but we do need the standard library to be present. | ||
builder.ensure(compile::Std::new(compiler, host)); | ||
builder.ensure(compile::Rustc::new(compiler, host)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Like this? Or There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this seems fine |
||
|
||
let workspace_path = "src/tools/rust-analyzer"; | ||
// until the whole RA test suite runs on `i686`, we only run | ||
|
@@ -378,7 +378,7 @@ impl Step for RustAnalyzer { | |
let mut cargo = tool::prepare_tool_cargo( | ||
builder, | ||
compiler, | ||
Mode::ToolStd, | ||
Mode::ToolRustc, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
host, | ||
"test", | ||
crate_path, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple lines above there is
builder.ensure(Std::new(target));
. Could you please replace it withbuilder.ensure(Rustc::new(target, builder));
?