@@ -964,8 +964,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
964
964
let _ = fs:: remove_dir_all ( & exe) ;
965
965
t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
966
966
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" ) ) ) ;
969
967
t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
970
968
t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
971
969
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -980,19 +978,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
980
978
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
981
979
. join ( format ! ( "rust-std-{}" , target) ) ,
982
980
& 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" ) ) ;
989
981
990
982
t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
991
983
t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
992
984
t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
993
985
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" ) ) ) ;
996
986
997
987
if target. contains ( "windows-gnu" ) {
998
988
t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1066,26 +1056,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1066
1056
. arg ( "-dr" ) . arg ( "Std" )
1067
1057
. arg ( "-var" ) . arg ( "var.StdDir" )
1068
1058
. 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" ) ) ) ;
1089
1059
if target. contains ( "windows-gnu" ) {
1090
1060
build. run ( Command :: new ( & heat)
1091
1061
. current_dir ( & exe)
@@ -1109,8 +1079,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1109
1079
. arg ( "-dDocsDir=rust-docs" )
1110
1080
. arg ( "-dCargoDir=cargo" )
1111
1081
. arg ( "-dStdDir=rust-std" )
1112
- . arg ( "-dRlsDir=rls" )
1113
- . arg ( "-dAnalysisDir=rust-analysis" )
1114
1082
. arg ( "-arch" ) . arg ( & arch)
1115
1083
. arg ( "-out" ) . arg ( & output)
1116
1084
. arg ( & input) ;
@@ -1128,8 +1096,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1128
1096
candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
1129
1097
candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
1130
1098
candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1131
- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1132
- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
1133
1099
1134
1100
if target. contains ( "windows-gnu" ) {
1135
1101
candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1152,8 +1118,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1152
1118
. arg ( "DocsGroup.wixobj" )
1153
1119
. arg ( "CargoGroup.wixobj" )
1154
1120
. arg ( "StdGroup.wixobj" )
1155
- . arg ( "RlsGroup.wixobj" )
1156
- . arg ( "AnalysisGroup.wixobj" )
1157
1121
. current_dir ( & exe) ;
1158
1122
1159
1123
if target. contains ( "windows-gnu" ) {
0 commit comments