@@ -52,7 +52,7 @@ pub(crate) const WORKSPACES: &[(&str, ExceptionList, Option<(&[&str], &[&str])>)
52
52
Some ( ( & [ "rustc_codegen_cranelift" ] , PERMITTED_CRANELIFT_DEPENDENCIES ) ) ,
53
53
) ,
54
54
// tidy-alphabetical-start
55
- ( "compiler/rustc_codegen_gcc" , EXCEPTIONS_GCC , None ) ,
55
+ // ("compiler/rustc_codegen_gcc", EXCEPTIONS_GCC, None), // FIXME uncomment once all deps are vendored
56
56
//("library/backtrace", &[], None), // FIXME uncomment once rust-lang/backtrace#562 lands
57
57
//("library/portable-simd", &[], None), // FIXME uncomment once rust-lang/portable-simd#363 has been synced back to the rust repo
58
58
//("library/stdarch", EXCEPTIONS_STDARCH, None), // FIXME uncomment once rust-lang/stdarch#1462 lands
@@ -158,12 +158,15 @@ const EXCEPTIONS_CRANELIFT: ExceptionList = &[
158
158
// tidy-alphabetical-end
159
159
] ;
160
160
161
+ // FIXME uncomment once all deps are vendored
162
+ /*
161
163
const EXCEPTIONS_GCC: ExceptionList = &[
162
164
// tidy-alphabetical-start
163
165
("gccjit", "GPL-3.0"),
164
166
("gccjit_sys", "GPL-3.0"),
165
167
// tidy-alphabetical-end
166
168
];
169
+ */
167
170
168
171
const EXCEPTIONS_BOOTSTRAP : ExceptionList = & [
169
172
( "ryu" , "Apache-2.0 OR BSL-1.0" ) , // through serde. BSL is not acceptble, but we use it under Apache-2.0
0 commit comments