This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ ignore = [
1919 " library/backtrace" ,
2020 " library/stdarch" ,
2121 " compiler/rustc_codegen_cranelift" ,
22+ " compiler/rustc_codegen_gcc" ,
2223 " src/doc/book" ,
2324 " src/doc/edition-guide" ,
2425 " src/doc/embedded-book" ,
Original file line number Diff line number Diff line change @@ -237,11 +237,16 @@ impl Step for CodegenBackend {
237237 const DEFAULT : bool = true ;
238238
239239 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+ ] )
241246 }
242247
243248 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" ) ] {
245250 run. builder . ensure ( CodegenBackend { target : run. target , backend } ) ;
246251 }
247252 }
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ fn filter_dirs(path: &Path) -> bool {
5656 let skip = [
5757 "tidy-test-file" ,
5858 "compiler/rustc_codegen_cranelift" ,
59+ "compiler/rustc_codegen_gcc" ,
5960 "src/llvm-project" ,
6061 "library/backtrace" ,
6162 "library/stdarch" ,
You can’t perform that action at this time.
0 commit comments