@@ -298,11 +298,11 @@ impl Builder {
298
298
self . package ( "rls-preview" , & mut manifest. pkg , HOSTS ) ;
299
299
self . package ( "rustfmt-preview" , & mut manifest. pkg , HOSTS ) ;
300
300
self . package ( "rust-analysis" , & mut manifest. pkg , TARGETS ) ;
301
- self . package ( "llvm-tools" , & mut manifest. pkg , TARGETS ) ;
301
+ self . package ( "llvm-tools-preview " , & mut manifest. pkg , TARGETS ) ;
302
302
303
303
let rls_present = manifest. pkg . contains_key ( "rls-preview" ) ;
304
304
let rustfmt_present = manifest. pkg . contains_key ( "rustfmt-preview" ) ;
305
- let llvm_tools_present = manifest. pkg . contains_key ( "llvm-tools" ) ;
305
+ let llvm_tools_present = manifest. pkg . contains_key ( "llvm-tools-preview " ) ;
306
306
307
307
if rls_present {
308
308
manifest. renames . insert ( "rls" . to_owned ( ) , Rename { to : "rls-preview" . to_owned ( ) } ) ;
@@ -359,7 +359,7 @@ impl Builder {
359
359
}
360
360
if llvm_tools_present {
361
361
extensions. push ( Component {
362
- pkg : "llvm-tools" . to_string ( ) ,
362
+ pkg : "llvm-tools-preview " . to_string ( ) ,
363
363
target : host. to_string ( ) ,
364
364
} ) ;
365
365
}
@@ -486,7 +486,7 @@ impl Builder {
486
486
& self . rls_version
487
487
} else if component == "rustfmt" || component == "rustfmt-preview" {
488
488
& self . rustfmt_version
489
- } else if component == "llvm-tools" {
489
+ } else if component == "llvm-tools" || component == "llvm-tools-preview" {
490
490
& self . llvm_tools_version
491
491
} else {
492
492
& self . rust_version
@@ -500,7 +500,7 @@ impl Builder {
500
500
& self . rls_git_commit_hash
501
501
} else if component == "rustfmt" || component == "rustfmt-preview" {
502
502
& self . rustfmt_git_commit_hash
503
- } else if component == "llvm-tools" {
503
+ } else if component == "llvm-tools" || component == "llvm-tools-preview" {
504
504
& self . llvm_tools_git_commit_hash
505
505
} else {
506
506
& self . rust_git_commit_hash
0 commit comments