Skip to content

Commit 8873ca5

Browse files
Rollup merge of #122334 - GuillaumeGomez:vendor-cg_gcc, r=Mark-Simulacrum
Vendor rustc_codegen_gcc I used #115274 as base for this update. r? `@bjorn3`
2 parents 4563f70 + 0f5140e commit 8873ca5

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

compiler/rustc_codegen_gcc/Cargo.lock

+6-4
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,18 @@ dependencies = [
7979

8080
[[package]]
8181
name = "gccjit"
82-
version = "1.0.0"
83-
source = "git+https://github.com/antoyo/gccjit.rs#9f8f67edc006d543b17529a001803ffece48349e"
82+
version = "2.0.0"
83+
source = "registry+https://github.com/rust-lang/crates.io-index"
84+
checksum = "ecaa4c3da2d74c1a991b4faff75d49ab1d0522d9a99d8e2614b3b04d226417ce"
8485
dependencies = [
8586
"gccjit_sys",
8687
]
8788

8889
[[package]]
8990
name = "gccjit_sys"
90-
version = "0.0.1"
91-
source = "git+https://github.com/antoyo/gccjit.rs#9f8f67edc006d543b17529a001803ffece48349e"
91+
version = "0.1.0"
92+
source = "registry+https://github.com/rust-lang/crates.io-index"
93+
checksum = "406a66fba005f1a02661f2f9443e5693dd3a667b7c58e70aa4ccc4c8b50b4758"
9294
dependencies = [
9395
"libc",
9496
]

compiler/rustc_codegen_gcc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ master = ["gccjit/master"]
2222
default = ["master"]
2323

2424
[dependencies]
25-
gccjit = { git = "https://github.com/antoyo/gccjit.rs" }
25+
gccjit = "2.0"
2626

2727
# Local copy.
2828
#gccjit = { path = "../gccjit.rs" }

src/bootstrap/bootstrap.py

+1
Original file line numberDiff line numberDiff line change
@@ -1038,6 +1038,7 @@ def check_vendored_status(self):
10381038
sync_dirs = "--sync ./src/tools/cargo/Cargo.toml " \
10391039
"--sync ./src/tools/rust-analyzer/Cargo.toml " \
10401040
"--sync ./compiler/rustc_codegen_cranelift/Cargo.toml " \
1041+
"--sync ./compiler/rustc_codegen_gcc/Cargo.toml " \
10411042
"--sync ./src/bootstrap/Cargo.toml "
10421043
eprint('ERROR: vendoring required, but vendor directory does not exist.')
10431044
eprint(' Run `cargo vendor {}` to initialize the '

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

+2
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,8 @@ impl Step for PlainSourceTarball {
10111011
.arg("--sync")
10121012
.arg(builder.src.join("./compiler/rustc_codegen_cranelift/Cargo.toml"))
10131013
.arg("--sync")
1014+
.arg(builder.src.join("./compiler/rustc_codegen_gcc/Cargo.toml"))
1015+
.arg("--sync")
10141016
.arg(builder.src.join("./src/bootstrap/Cargo.toml"))
10151017
// Will read the libstd Cargo.toml
10161018
// 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

0 commit comments

Comments
 (0)