Skip to content

Commit 0ada6fd

Browse files
Vendor rustc_codegen_gcc
1 parent cdb775c commit 0ada6fd

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

src/bootstrap/bootstrap.py

+1
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,7 @@ def check_vendored_status(self):
10321032
sync_dirs = "--sync ./src/tools/cargo/Cargo.toml " \
10331033
"--sync ./src/tools/rust-analyzer/Cargo.toml " \
10341034
"--sync ./compiler/rustc_codegen_cranelift/Cargo.toml " \
1035+
"--sync ./compiler/rustc_codegen_gcc/Cargo.toml " \
10351036
"--sync ./src/bootstrap/Cargo.toml "
10361037
eprint('ERROR: vendoring required, but vendor directory does not exist.')
10371038
eprint(' Run `cargo vendor {}` to initialize the '

src/bootstrap/src/core/build_steps/dist.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,8 @@ impl Step for PlainSourceTarball {
10091009
.arg("--sync")
10101010
.arg(builder.src.join("./compiler/rustc_codegen_cranelift/Cargo.toml"))
10111011
.arg("--sync")
1012+
.arg(builder.src.join("./compiler/rustc_codegen_gcc/Cargo.toml"))
1013+
.arg("--sync")
10121014
.arg(builder.src.join("./src/bootstrap/Cargo.toml"))
10131015
// Will read the libstd Cargo.toml
10141016
// which uses the unstable `public-dependency` feature.

src/tools/tidy/src/deps.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub(crate) const WORKSPACES: &[(&str, ExceptionList, Option<(&[&str], &[&str])>)
5656
Some((&["rustc_codegen_cranelift"], PERMITTED_CRANELIFT_DEPENDENCIES)),
5757
),
5858
// tidy-alphabetical-start
59-
//("compiler/rustc_codegen_gcc", EXCEPTIONS_GCC, None), // FIXME uncomment once all deps are vendored
59+
("compiler/rustc_codegen_gcc", EXCEPTIONS_GCC, None),
6060
//("library/backtrace", &[], None), // FIXME uncomment once rust-lang/backtrace#562 has been synced back to the rust repo
6161
//("library/portable-simd", &[], None), // FIXME uncomment once rust-lang/portable-simd#363 has been synced back to the rust repo
6262
//("library/stdarch", EXCEPTIONS_STDARCH, None), // FIXME uncomment once rust-lang/stdarch#1462 has been synced back to the rust repo
@@ -164,15 +164,12 @@ const EXCEPTIONS_CRANELIFT: ExceptionList = &[
164164
// tidy-alphabetical-end
165165
];
166166

167-
// FIXME uncomment once all deps are vendored
168-
/*
169167
const EXCEPTIONS_GCC: ExceptionList = &[
170168
// tidy-alphabetical-start
171169
("gccjit", "GPL-3.0"),
172170
("gccjit_sys", "GPL-3.0"),
173171
// tidy-alphabetical-end
174172
];
175-
*/
176173

177174
const EXCEPTIONS_BOOTSTRAP: ExceptionList = &[
178175
("ryu", "Apache-2.0 OR BSL-1.0"), // through serde. BSL is not acceptble, but we use it under Apache-2.0

src/tools/tidy/src/extdeps.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ use std::fs;
44
use std::path::Path;
55

66
/// List of allowed sources for packages.
7-
const ALLOWED_SOURCES: &[&str] = &["\"registry+https://github.com/rust-lang/crates.io-index\""];
7+
const ALLOWED_SOURCES: &[&str] = &[
8+
"\"registry+https://github.com/rust-lang/crates.io-index\"",
9+
"\"git+https://github.com/antoyo/gccjit.rs",
10+
];
811

912
/// Checks for external package sources. `root` is the path to the directory that contains the
1013
/// workspace `Cargo.toml`.
@@ -33,7 +36,7 @@ pub fn check(root: &Path, bad: &mut bool) {
3336
let source = line.split_once('=').unwrap().1.trim();
3437

3538
// Ensure source is allowed.
36-
if !ALLOWED_SOURCES.contains(&&*source) {
39+
if !ALLOWED_SOURCES.iter().any(|allowed| source.starts_with(allowed)) {
3740
tidy_error!(bad, "invalid source: {}", source);
3841
}
3942
}

0 commit comments

Comments
 (0)