@@ -1409,7 +1409,7 @@ impl Step for Extended {
14091409
14101410 let xform = |p: &Path| {
14111411 let mut contents = t!(fs::read_to_string(p));
1412- for tool in &["rust-demangler", "rls", " rust-analyzer", "miri", "rustfmt"] {
1412+ for tool in &["rust-demangler", "rust-analyzer", "miri", "rustfmt"] {
14131413 if !built_tools.contains(tool) {
14141414 contents = filter(&contents, tool);
14151415 }
@@ -1449,7 +1449,7 @@ impl Step for Extended {
14491449 prepare("rust-std");
14501450 prepare("rust-analysis");
14511451 prepare("clippy");
1452- for tool in &["rust-docs", "rust-demangler", "rls", " rust-analyzer", "miri"] {
1452+ for tool in &["rust-docs", "rust-demangler", "rust-analyzer", "miri"] {
14531453 if built_tools.contains(tool) {
14541454 prepare(tool);
14551455 }
@@ -1485,8 +1485,6 @@ impl Step for Extended {
14851485 builder.create_dir(&exe.join(name));
14861486 let dir = if name == "rust-std" || name == "rust-analysis" {
14871487 format!("{}-{}", name, target.triple)
1488- } else if name == "rls" {
1489- "rls-preview".to_string()
14901488 } else if name == "rust-analyzer" {
14911489 "rust-analyzer-preview".to_string()
14921490 } else if name == "clippy" {
@@ -1510,7 +1508,7 @@ impl Step for Extended {
15101508 prepare("rust-docs");
15111509 prepare("rust-std");
15121510 prepare("clippy");
1513- for tool in &["rust-demangler", "rls", " rust-analyzer", "miri"] {
1511+ for tool in &["rust-demangler", "rust-analyzer", "miri"] {
15141512 if built_tools.contains(tool) {
15151513 prepare(tool);
15161514 }
@@ -1594,25 +1592,6 @@ impl Step for Extended {
15941592 .arg("-out")
15951593 .arg(exe.join("StdGroup.wxs")),
15961594 );
1597- if built_tools.contains("rls") {
1598- builder.run(
1599- Command::new(&heat)
1600- .current_dir(&exe)
1601- .arg("dir")
1602- .arg("rls")
1603- .args(&heat_flags)
1604- .arg("-cg")
1605- .arg("RlsGroup")
1606- .arg("-dr")
1607- .arg("Rls")
1608- .arg("-var")
1609- .arg("var.RlsDir")
1610- .arg("-out")
1611- .arg(exe.join("RlsGroup.wxs"))
1612- .arg("-t")
1613- .arg(etc.join("msi/remove-duplicates.xsl")),
1614- );
1615- }
16161595 if built_tools.contains("rust-analyzer") {
16171596 builder.run(
16181597 Command::new(&heat)
@@ -1744,9 +1723,6 @@ impl Step for Extended {
17441723 if built_tools.contains("rust-demangler") {
17451724 cmd.arg("-dRustDemanglerDir=rust-demangler");
17461725 }
1747- if built_tools.contains("rls") {
1748- cmd.arg("-dRlsDir=rls");
1749- }
17501726 if built_tools.contains("rust-analyzer") {
17511727 cmd.arg("-dRustAnalyzerDir=rust-analyzer");
17521728 }
@@ -1769,9 +1745,6 @@ impl Step for Extended {
17691745 if built_tools.contains("rust-demangler") {
17701746 candle("RustDemanglerGroup.wxs".as_ref());
17711747 }
1772- if built_tools.contains("rls") {
1773- candle("RlsGroup.wxs".as_ref());
1774- }
17751748 if built_tools.contains("rust-analyzer") {
17761749 candle("RustAnalyzerGroup.wxs".as_ref());
17771750 }
@@ -1809,9 +1782,6 @@ impl Step for Extended {
18091782 .arg("ClippyGroup.wixobj")
18101783 .current_dir(&exe);
18111784
1812- if built_tools.contains("rls") {
1813- cmd.arg("RlsGroup.wixobj");
1814- }
18151785 if built_tools.contains("rust-analyzer") {
18161786 cmd.arg("RustAnalyzerGroup.wixobj");
18171787 }
0 commit comments