@@ -1409,7 +1409,7 @@ impl Step for Extended {
1409
1409
1410
1410
let xform = |p: &Path| {
1411
1411
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"] {
1413
1413
if !built_tools.contains(tool) {
1414
1414
contents = filter(&contents, tool);
1415
1415
}
@@ -1449,7 +1449,7 @@ impl Step for Extended {
1449
1449
prepare("rust-std");
1450
1450
prepare("rust-analysis");
1451
1451
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"] {
1453
1453
if built_tools.contains(tool) {
1454
1454
prepare(tool);
1455
1455
}
@@ -1485,8 +1485,6 @@ impl Step for Extended {
1485
1485
builder.create_dir(&exe.join(name));
1486
1486
let dir = if name == "rust-std" || name == "rust-analysis" {
1487
1487
format!("{}-{}", name, target.triple)
1488
- } else if name == "rls" {
1489
- "rls-preview".to_string()
1490
1488
} else if name == "rust-analyzer" {
1491
1489
"rust-analyzer-preview".to_string()
1492
1490
} else if name == "clippy" {
@@ -1510,7 +1508,7 @@ impl Step for Extended {
1510
1508
prepare("rust-docs");
1511
1509
prepare("rust-std");
1512
1510
prepare("clippy");
1513
- for tool in &["rust-demangler", "rls", " rust-analyzer", "miri"] {
1511
+ for tool in &["rust-demangler", "rust-analyzer", "miri"] {
1514
1512
if built_tools.contains(tool) {
1515
1513
prepare(tool);
1516
1514
}
@@ -1594,25 +1592,6 @@ impl Step for Extended {
1594
1592
.arg("-out")
1595
1593
.arg(exe.join("StdGroup.wxs")),
1596
1594
);
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
- }
1616
1595
if built_tools.contains("rust-analyzer") {
1617
1596
builder.run(
1618
1597
Command::new(&heat)
@@ -1744,9 +1723,6 @@ impl Step for Extended {
1744
1723
if built_tools.contains("rust-demangler") {
1745
1724
cmd.arg("-dRustDemanglerDir=rust-demangler");
1746
1725
}
1747
- if built_tools.contains("rls") {
1748
- cmd.arg("-dRlsDir=rls");
1749
- }
1750
1726
if built_tools.contains("rust-analyzer") {
1751
1727
cmd.arg("-dRustAnalyzerDir=rust-analyzer");
1752
1728
}
@@ -1769,9 +1745,6 @@ impl Step for Extended {
1769
1745
if built_tools.contains("rust-demangler") {
1770
1746
candle("RustDemanglerGroup.wxs".as_ref());
1771
1747
}
1772
- if built_tools.contains("rls") {
1773
- candle("RlsGroup.wxs".as_ref());
1774
- }
1775
1748
if built_tools.contains("rust-analyzer") {
1776
1749
candle("RustAnalyzerGroup.wxs".as_ref());
1777
1750
}
@@ -1809,9 +1782,6 @@ impl Step for Extended {
1809
1782
.arg("ClippyGroup.wixobj")
1810
1783
.current_dir(&exe);
1811
1784
1812
- if built_tools.contains("rls") {
1813
- cmd.arg("RlsGroup.wixobj");
1814
- }
1815
1785
if built_tools.contains("rust-analyzer") {
1816
1786
cmd.arg("RustAnalyzerGroup.wixobj");
1817
1787
}
0 commit comments