File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ ignore = [
19
19
" library/backtrace" ,
20
20
" library/stdarch" ,
21
21
" compiler/rustc_codegen_cranelift" ,
22
+ " compiler/rustc_codegen_gcc" ,
22
23
" src/doc/book" ,
23
24
" src/doc/edition-guide" ,
24
25
" src/doc/embedded-book" ,
Original file line number Diff line number Diff line change @@ -237,11 +237,16 @@ impl Step for CodegenBackend {
237
237
const DEFAULT : bool = true ;
238
238
239
239
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
240
- run. paths ( & [ "compiler/rustc_codegen_cranelift" , "rustc_codegen_cranelift" ] )
240
+ run. paths ( & [
241
+ "compiler/rustc_codegen_cranelift" ,
242
+ "rustc_codegen_cranelift" ,
243
+ "compiler/rustc_codegen_gcc" ,
244
+ "rustc_codegen_gcc" ,
245
+ ] )
241
246
}
242
247
243
248
fn make_run ( run : RunConfig < ' _ > ) {
244
- for & backend in & [ INTERNER . intern_str ( "cranelift" ) ] {
249
+ for & backend in & [ INTERNER . intern_str ( "cranelift" ) , INTERNER . intern_str ( "gcc" ) ] {
245
250
run. builder . ensure ( CodegenBackend { target : run. target , backend } ) ;
246
251
}
247
252
}
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ fn filter_dirs(path: &Path) -> bool {
56
56
let skip = [
57
57
"tidy-test-file" ,
58
58
"compiler/rustc_codegen_cranelift" ,
59
+ "compiler/rustc_codegen_gcc" ,
59
60
"src/llvm-project" ,
60
61
"library/backtrace" ,
61
62
"library/stdarch" ,
You can’t perform that action at this time.
0 commit comments