@@ -964,8 +964,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
964964 let _ = fs:: remove_dir_all ( & exe) ;
965965 t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
966966 t ! ( fs:: create_dir_all( exe. join( "cargo" ) ) ) ;
967- t ! ( fs:: create_dir_all( exe. join( "rls" ) ) ) ;
968- t ! ( fs:: create_dir_all( exe. join( "rust-analysis" ) ) ) ;
969967 t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
970968 t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
971969 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -980,19 +978,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
980978 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
981979 . join ( format ! ( "rust-std-{}" , target) ) ,
982980 & exe. join ( "rust-std" ) ) ;
983- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) )
984- . join ( "rls" ) ,
985- & exe. join ( "rls" ) ) ;
986- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) )
987- . join ( format ! ( "rust-analysis-{}" , target) ) ,
988- & exe. join ( "rust-analysis" ) ) ;
989981
990982 t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
991983 t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
992984 t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
993985 t ! ( fs:: remove_file( exe. join( "rust-std/manifest.in" ) ) ) ;
994- t ! ( fs:: remove_file( exe. join( "rls/manifest.in" ) ) ) ;
995- t ! ( fs:: remove_file( exe. join( "rust-analysis/manifest.in" ) ) ) ;
996986
997987 if target. contains ( "windows-gnu" ) {
998988 t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1066,26 +1056,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
10661056 . arg ( "-dr" ) . arg ( "Std" )
10671057 . arg ( "-var" ) . arg ( "var.StdDir" )
10681058 . arg ( "-out" ) . arg ( exe. join ( "StdGroup.wxs" ) ) ) ;
1069- build. run ( Command :: new ( & heat)
1070- . current_dir ( & exe)
1071- . arg ( "dir" )
1072- . arg ( "rls" )
1073- . args ( & heat_flags)
1074- . arg ( "-cg" ) . arg ( "RlsGroup" )
1075- . arg ( "-dr" ) . arg ( "Rls" )
1076- . arg ( "-var" ) . arg ( "var.RlsDir" )
1077- . arg ( "-out" ) . arg ( exe. join ( "RlsGroup.wxs" ) )
1078- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
1079- build. run ( Command :: new ( & heat)
1080- . current_dir ( & exe)
1081- . arg ( "dir" )
1082- . arg ( "rust-analysis" )
1083- . args ( & heat_flags)
1084- . arg ( "-cg" ) . arg ( "AnalysisGroup" )
1085- . arg ( "-dr" ) . arg ( "Analysis" )
1086- . arg ( "-var" ) . arg ( "var.AnalysisDir" )
1087- . arg ( "-out" ) . arg ( exe. join ( "AnalysisGroup.wxs" ) )
1088- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
10891059 if target. contains ( "windows-gnu" ) {
10901060 build. run ( Command :: new ( & heat)
10911061 . current_dir ( & exe)
@@ -1109,8 +1079,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11091079 . arg ( "-dDocsDir=rust-docs" )
11101080 . arg ( "-dCargoDir=cargo" )
11111081 . arg ( "-dStdDir=rust-std" )
1112- . arg ( "-dRlsDir=rls" )
1113- . arg ( "-dAnalysisDir=rust-analysis" )
11141082 . arg ( "-arch" ) . arg ( & arch)
11151083 . arg ( "-out" ) . arg ( & output)
11161084 . arg ( & input) ;
@@ -1128,8 +1096,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11281096 candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
11291097 candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
11301098 candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1131- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1132- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
11331099
11341100 if target. contains ( "windows-gnu" ) {
11351101 candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1152,8 +1118,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11521118 . arg ( "DocsGroup.wixobj" )
11531119 . arg ( "CargoGroup.wixobj" )
11541120 . arg ( "StdGroup.wixobj" )
1155- . arg ( "RlsGroup.wixobj" )
1156- . arg ( "AnalysisGroup.wixobj" )
11571121 . current_dir ( & exe) ;
11581122
11591123 if target. contains ( "windows-gnu" ) {
0 commit comments