@@ -1126,6 +1126,7 @@ impl Step for Extended {
1126
1126
compiler : builder. compiler ( stage, target) ,
1127
1127
} ) ;
1128
1128
let cargo_installer = builder. ensure ( Cargo { stage, target } ) ;
1129
+ let rls_installer = builder. ensure ( Rls { stage, target } ) ;
1129
1130
let mingw_installer = builder. ensure ( Mingw { host : target } ) ;
1130
1131
let analysis_installer = builder. ensure ( Analysis {
1131
1132
compiler : builder. compiler ( stage, self . host ) ,
@@ -1155,7 +1156,7 @@ impl Step for Extended {
1155
1156
// upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
1156
1157
// the std files during uninstall. To do this ensure that rustc comes
1157
1158
// before rust-std in the list below.
1158
- let mut tarballs = vec ! [ rustc_installer, cargo_installer,
1159
+ let mut tarballs = vec ! [ rustc_installer, cargo_installer, rls_installer ,
1159
1160
analysis_installer, docs_installer, std_installer] ;
1160
1161
if target. contains ( "pc-windows-gnu" ) {
1161
1162
tarballs. push ( mingw_installer. unwrap ( ) ) ;
@@ -1202,6 +1203,8 @@ impl Step for Extended {
1202
1203
t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
1203
1204
t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
1204
1205
t ! ( fs:: create_dir_all( pkg. join( "rust-std" ) ) ) ;
1206
+ t ! ( fs:: create_dir_all( pkg. join( "rls" ) ) ) ;
1207
+ t ! ( fs:: create_dir_all( pkg. join( "rust-analysis" ) ) ) ;
1205
1208
1206
1209
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
1207
1210
& pkg. join ( "rustc" ) ) ;
@@ -1211,11 +1214,17 @@ impl Step for Extended {
1211
1214
& pkg. join ( "rust-docs" ) ) ;
1212
1215
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
1213
1216
& pkg. join ( "rust-std" ) ) ;
1217
+ cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) ) ,
1218
+ & pkg. join ( "rls" ) ) ;
1219
+ cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) ) ,
1220
+ & pkg. join ( "rust-analysis" ) ) ;
1214
1221
1215
1222
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
1216
1223
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
1217
1224
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
1218
1225
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-std" ) , 0o755 ) ;
1226
+ install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rls" ) , 0o755 ) ;
1227
+ install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-analysis" ) , 0o755 ) ;
1219
1228
1220
1229
let pkgbuild = |component : & str | {
1221
1230
let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -1229,6 +1238,8 @@ impl Step for Extended {
1229
1238
pkgbuild ( "cargo" ) ;
1230
1239
pkgbuild ( "rust-docs" ) ;
1231
1240
pkgbuild ( "rust-std" ) ;
1241
+ pkgbuild ( "rls" ) ;
1242
+ pkgbuild ( "rust-analysis" ) ;
1232
1243
1233
1244
// create an 'uninstall' package
1234
1245
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
@@ -1252,6 +1263,8 @@ impl Step for Extended {
1252
1263
let _ = fs:: remove_dir_all ( & exe) ;
1253
1264
t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
1254
1265
t ! ( fs:: create_dir_all( exe. join( "cargo" ) ) ) ;
1266
+ t ! ( fs:: create_dir_all( exe. join( "rls" ) ) ) ;
1267
+ t ! ( fs:: create_dir_all( exe. join( "rust-analysis" ) ) ) ;
1255
1268
t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
1256
1269
t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
1257
1270
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -1266,11 +1279,19 @@ impl Step for Extended {
1266
1279
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
1267
1280
. join ( format ! ( "rust-std-{}" , target) ) ,
1268
1281
& exe. join ( "rust-std" ) ) ;
1282
+ cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) )
1283
+ . join ( "rls" ) ,
1284
+ & exe. join ( "rls" ) ) ;
1285
+ cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) )
1286
+ . join ( format ! ( "rust-analysis-{}" , target) ) ,
1287
+ & exe. join ( "rust-analysis" ) ) ;
1269
1288
1270
1289
t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
1271
1290
t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
1272
1291
t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
1273
1292
t ! ( fs:: remove_file( exe. join( "rust-std/manifest.in" ) ) ) ;
1293
+ t ! ( fs:: remove_file( exe. join( "rls/manifest.in" ) ) ) ;
1294
+ t ! ( fs:: remove_file( exe. join( "rust-analysis/manifest.in" ) ) ) ;
1274
1295
1275
1296
if target. contains ( "windows-gnu" ) {
1276
1297
t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1344,6 +1365,26 @@ impl Step for Extended {
1344
1365
. arg ( "-dr" ) . arg ( "Std" )
1345
1366
. arg ( "-var" ) . arg ( "var.StdDir" )
1346
1367
. arg ( "-out" ) . arg ( exe. join ( "StdGroup.wxs" ) ) ) ;
1368
+ build. run ( Command :: new ( & heat)
1369
+ . current_dir ( & exe)
1370
+ . arg ( "dir" )
1371
+ . arg ( "rls" )
1372
+ . args ( & heat_flags)
1373
+ . arg ( "-cg" ) . arg ( "RlsGroup" )
1374
+ . arg ( "-dr" ) . arg ( "Rls" )
1375
+ . arg ( "-var" ) . arg ( "var.RlsDir" )
1376
+ . arg ( "-out" ) . arg ( exe. join ( "RlsGroup.wxs" ) )
1377
+ . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
1378
+ build. run ( Command :: new ( & heat)
1379
+ . current_dir ( & exe)
1380
+ . arg ( "dir" )
1381
+ . arg ( "rust-analysis" )
1382
+ . args ( & heat_flags)
1383
+ . arg ( "-cg" ) . arg ( "AnalysisGroup" )
1384
+ . arg ( "-dr" ) . arg ( "Analysis" )
1385
+ . arg ( "-var" ) . arg ( "var.AnalysisDir" )
1386
+ . arg ( "-out" ) . arg ( exe. join ( "AnalysisGroup.wxs" ) )
1387
+ . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
1347
1388
if target. contains ( "windows-gnu" ) {
1348
1389
build. run ( Command :: new ( & heat)
1349
1390
. current_dir ( & exe)
@@ -1367,6 +1408,8 @@ impl Step for Extended {
1367
1408
. arg ( "-dDocsDir=rust-docs" )
1368
1409
. arg ( "-dCargoDir=cargo" )
1369
1410
. arg ( "-dStdDir=rust-std" )
1411
+ . arg ( "-dRlsDir=rls" )
1412
+ . arg ( "-dAnalysisDir=rust-analysis" )
1370
1413
. arg ( "-arch" ) . arg ( & arch)
1371
1414
. arg ( "-out" ) . arg ( & output)
1372
1415
. arg ( & input) ;
@@ -1384,6 +1427,8 @@ impl Step for Extended {
1384
1427
candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
1385
1428
candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
1386
1429
candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1430
+ candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1431
+ candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
1387
1432
1388
1433
if target. contains ( "windows-gnu" ) {
1389
1434
candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1406,6 +1451,8 @@ impl Step for Extended {
1406
1451
. arg ( "DocsGroup.wixobj" )
1407
1452
. arg ( "CargoGroup.wixobj" )
1408
1453
. arg ( "StdGroup.wixobj" )
1454
+ . arg ( "RlsGroup.wixobj" )
1455
+ . arg ( "AnalysisGroup.wixobj" )
1409
1456
. current_dir ( & exe) ;
1410
1457
1411
1458
if target. contains ( "windows-gnu" ) {
@@ -1490,6 +1537,7 @@ impl Step for HashSign {
1490
1537
cmd. arg ( today. trim ( ) ) ;
1491
1538
cmd. arg ( build. rust_package_vers ( ) ) ;
1492
1539
cmd. arg ( build. package_vers ( & build. release_num ( "cargo" ) ) ) ;
1540
+ cmd. arg ( build. package_vers ( & build. release_num ( "rls" ) ) ) ;
1493
1541
cmd. arg ( addr) ;
1494
1542
1495
1543
t ! ( fs:: create_dir_all( distdir( build) ) ) ;
0 commit comments