Skip to content

Commit 40ce4af

Browse files
authored
Rollup merge of rust-lang#102686 - cuviper:rls-tool_std, r=jyn514
Don't build the compiler before building rls The rls stub is a simple stable tool, which doesn't need compiler libs. (Similar to rust-lang#97511)
2 parents 8dea87d + 3042b78 commit 40ce4af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/tool.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -870,10 +870,10 @@ tool_extended!((self, builder),
870870
Clippy, "src/tools/clippy", "clippy-driver", stable=true, in_tree=true, {};
871871
Miri, "src/tools/miri", "miri", stable=false, in_tree=true, {};
872872
CargoMiri, "src/tools/miri/cargo-miri", "cargo-miri", stable=false, in_tree=true, {};
873-
Rls, "src/tools/rls", "rls", stable=true, {};
874873
// FIXME: tool_std is not quite right, we shouldn't allow nightly features.
875874
// But `builder.cargo` doesn't know how to handle ToolBootstrap in stages other than 0,
876875
// and this is close enough for now.
876+
Rls, "src/tools/rls", "rls", stable=true, in_tree=true, tool_std=true, {};
877877
RustDemangler, "src/tools/rust-demangler", "rust-demangler", stable=false, in_tree=true, tool_std=true, {};
878878
Rustfmt, "src/tools/rustfmt", "rustfmt", stable=true, in_tree=true, {};
879879
);

0 commit comments

Comments
 (0)