@@ -289,7 +289,6 @@ fn rustbook_features() -> Vec<String> {
289
289
macro_rules! bootstrap_tool {
290
290
( $(
291
291
$name: ident, $path: expr, $tool_name: expr
292
- $( , llvm_tools = $llvm: expr) *
293
292
$( , is_external_tool = $external: expr) *
294
293
$( , features = $features: expr) *
295
294
;
@@ -301,15 +300,6 @@ macro_rules! bootstrap_tool {
301
300
) +
302
301
}
303
302
304
- impl Tool {
305
- /// Whether this tool requires LLVM to run
306
- pub fn uses_llvm_tools( & self ) -> bool {
307
- match self {
308
- $( Tool :: $name => false $( || $llvm) * , ) +
309
- }
310
- }
311
- }
312
-
313
303
impl <' a> Builder <' a> {
314
304
pub fn tool_exe( & self , tool: Tool ) -> PathBuf {
315
305
match tool {
@@ -377,7 +367,7 @@ bootstrap_tool!(
377
367
Tidy , "src/tools/tidy" , "tidy" ;
378
368
Linkchecker , "src/tools/linkchecker" , "linkchecker" ;
379
369
CargoTest , "src/tools/cargotest" , "cargotest" ;
380
- Compiletest , "src/tools/compiletest" , "compiletest" , llvm_tools = true ;
370
+ Compiletest , "src/tools/compiletest" , "compiletest" ;
381
371
BuildManifest , "src/tools/build-manifest" , "build-manifest" ;
382
372
RemoteTestClient , "src/tools/remote-test-client" , "remote-test-client" ;
383
373
RustInstaller , "src/tools/rust-installer" , "fabricate" , is_external_tool = true ;
0 commit comments