@@ -53,7 +53,7 @@ pub(crate) const WORKSPACES: &[(&str, ExceptionList, Option<(&[&str], &[&str])>)
53
53
Some ( ( & [ "rustc_codegen_cranelift" ] , PERMITTED_CRANELIFT_DEPENDENCIES ) ) ,
54
54
) ,
55
55
// tidy-alphabetical-start
56
- ( "compiler/rustc_codegen_gcc" , EXCEPTIONS_GCC , None ) ,
56
+ // ("compiler/rustc_codegen_gcc", EXCEPTIONS_GCC, None), // FIXME uncomment once all deps are vendored
57
57
//("library/backtrace", &[], None), // FIXME uncomment once rust-lang/backtrace#562 lands
58
58
//("library/portable-simd", &[], None), // FIXME uncomment once rust-lang/portable-simd#363 has been synced back to the rust repo
59
59
//("library/stdarch", EXCEPTIONS_STDARCH, None), // FIXME uncomment once rust-lang/stdarch#1462 lands
@@ -160,12 +160,15 @@ const EXCEPTIONS_CRANELIFT: ExceptionList = &[
160
160
// tidy-alphabetical-end
161
161
] ;
162
162
163
+ // FIXME uncomment once all deps are vendored
164
+ /*
163
165
const EXCEPTIONS_GCC: ExceptionList = &[
164
166
// tidy-alphabetical-start
165
167
("gccjit", "GPL-3.0"),
166
168
("gccjit_sys", "GPL-3.0"),
167
169
// tidy-alphabetical-end
168
170
];
171
+ */
169
172
170
173
const EXCEPTIONS_BOOTSTRAP : ExceptionList = & [
171
174
( "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