Skip to content

Commit f62dcc4

Browse files
authored
Unrolled build for rust-lang#129876
Rollup merge of rust-lang#129876 - nnethercote:more-sysroot-rustc_codegen_gcc, r=Mark-Simulacrum Use sysroot crates maximally in `rustc_codegen_gcc`. This shrinks `compiler/rustc_codegen_gcc/Cargo.lock` quite a bit. The only remaining dependencies in `compiler/rustc_codegen_gcc/Cargo.lock` are `gccjit`, `lang_tester`, and `boml`, all of which aren't used in any other compiler crates. The commit also reorders and adds comments to the `extern crate` items so they match those in miri. r? ```@Mark-Simulacrum```
2 parents 263a3ae + 747f680 commit f62dcc4

File tree

3 files changed

+8
-188
lines changed

3 files changed

+8
-188
lines changed

compiler/rustc_codegen_gcc/Cargo.lock

-176
Original file line numberDiff line numberDiff line change
@@ -11,63 +11,12 @@ dependencies = [
1111
"memchr",
1212
]
1313

14-
[[package]]
15-
name = "bitflags"
16-
version = "1.3.2"
17-
source = "registry+https://github.com/rust-lang/crates.io-index"
18-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
19-
20-
[[package]]
21-
name = "bitflags"
22-
version = "2.4.0"
23-
source = "registry+https://github.com/rust-lang/crates.io-index"
24-
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
25-
2614
[[package]]
2715
name = "boml"
2816
version = "0.3.1"
2917
source = "registry+https://github.com/rust-lang/crates.io-index"
3018
checksum = "85fdb93f04c73bff54305fa437ffea5449c41edcaadfe882f35836206b166ac5"
3119

32-
[[package]]
33-
name = "cc"
34-
version = "1.0.79"
35-
source = "registry+https://github.com/rust-lang/crates.io-index"
36-
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
37-
38-
[[package]]
39-
name = "cfg-if"
40-
version = "1.0.0"
41-
source = "registry+https://github.com/rust-lang/crates.io-index"
42-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
43-
44-
[[package]]
45-
name = "errno"
46-
version = "0.3.1"
47-
source = "registry+https://github.com/rust-lang/crates.io-index"
48-
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
49-
dependencies = [
50-
"errno-dragonfly",
51-
"libc",
52-
"windows-sys",
53-
]
54-
55-
[[package]]
56-
name = "errno-dragonfly"
57-
version = "0.1.2"
58-
source = "registry+https://github.com/rust-lang/crates.io-index"
59-
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
60-
dependencies = [
61-
"cc",
62-
"libc",
63-
]
64-
65-
[[package]]
66-
name = "fastrand"
67-
version = "2.0.0"
68-
source = "registry+https://github.com/rust-lang/crates.io-index"
69-
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
70-
7120
[[package]]
7221
name = "fm"
7322
version = "0.2.2"
@@ -132,12 +81,6 @@ version = "0.2.150"
13281
source = "registry+https://github.com/rust-lang/crates.io-index"
13382
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
13483

135-
[[package]]
136-
name = "linux-raw-sys"
137-
version = "0.4.5"
138-
source = "registry+https://github.com/rust-lang/crates.io-index"
139-
checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
140-
14184
[[package]]
14285
name = "memchr"
14386
version = "2.5.0"
@@ -154,24 +97,6 @@ dependencies = [
15497
"libc",
15598
]
15699

157-
[[package]]
158-
name = "object"
159-
version = "0.30.4"
160-
source = "registry+https://github.com/rust-lang/crates.io-index"
161-
checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
162-
dependencies = [
163-
"memchr",
164-
]
165-
166-
[[package]]
167-
name = "redox_syscall"
168-
version = "0.3.5"
169-
source = "registry+https://github.com/rust-lang/crates.io-index"
170-
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
171-
dependencies = [
172-
"bitflags 1.3.2",
173-
]
174-
175100
[[package]]
176101
name = "regex"
177102
version = "1.8.4"
@@ -196,22 +121,6 @@ dependencies = [
196121
"boml",
197122
"gccjit",
198123
"lang_tester",
199-
"object",
200-
"smallvec",
201-
"tempfile",
202-
]
203-
204-
[[package]]
205-
name = "rustix"
206-
version = "0.38.8"
207-
source = "registry+https://github.com/rust-lang/crates.io-index"
208-
checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f"
209-
dependencies = [
210-
"bitflags 2.4.0",
211-
"errno",
212-
"libc",
213-
"linux-raw-sys",
214-
"windows-sys",
215124
]
216125

217126
[[package]]
@@ -223,25 +132,6 @@ dependencies = [
223132
"winapi-util",
224133
]
225134

226-
[[package]]
227-
name = "smallvec"
228-
version = "1.10.0"
229-
source = "registry+https://github.com/rust-lang/crates.io-index"
230-
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
231-
232-
[[package]]
233-
name = "tempfile"
234-
version = "3.7.1"
235-
source = "registry+https://github.com/rust-lang/crates.io-index"
236-
checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651"
237-
dependencies = [
238-
"cfg-if",
239-
"fastrand",
240-
"redox_syscall",
241-
"rustix",
242-
"windows-sys",
243-
]
244-
245135
[[package]]
246136
name = "termcolor"
247137
version = "1.2.0"
@@ -315,69 +205,3 @@ name = "winapi-x86_64-pc-windows-gnu"
315205
version = "0.4.0"
316206
source = "registry+https://github.com/rust-lang/crates.io-index"
317207
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
318-
319-
[[package]]
320-
name = "windows-sys"
321-
version = "0.48.0"
322-
source = "registry+https://github.com/rust-lang/crates.io-index"
323-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
324-
dependencies = [
325-
"windows-targets",
326-
]
327-
328-
[[package]]
329-
name = "windows-targets"
330-
version = "0.48.1"
331-
source = "registry+https://github.com/rust-lang/crates.io-index"
332-
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
333-
dependencies = [
334-
"windows_aarch64_gnullvm",
335-
"windows_aarch64_msvc",
336-
"windows_i686_gnu",
337-
"windows_i686_msvc",
338-
"windows_x86_64_gnu",
339-
"windows_x86_64_gnullvm",
340-
"windows_x86_64_msvc",
341-
]
342-
343-
[[package]]
344-
name = "windows_aarch64_gnullvm"
345-
version = "0.48.0"
346-
source = "registry+https://github.com/rust-lang/crates.io-index"
347-
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
348-
349-
[[package]]
350-
name = "windows_aarch64_msvc"
351-
version = "0.48.0"
352-
source = "registry+https://github.com/rust-lang/crates.io-index"
353-
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
354-
355-
[[package]]
356-
name = "windows_i686_gnu"
357-
version = "0.48.0"
358-
source = "registry+https://github.com/rust-lang/crates.io-index"
359-
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
360-
361-
[[package]]
362-
name = "windows_i686_msvc"
363-
version = "0.48.0"
364-
source = "registry+https://github.com/rust-lang/crates.io-index"
365-
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
366-
367-
[[package]]
368-
name = "windows_x86_64_gnu"
369-
version = "0.48.0"
370-
source = "registry+https://github.com/rust-lang/crates.io-index"
371-
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
372-
373-
[[package]]
374-
name = "windows_x86_64_gnullvm"
375-
version = "0.48.0"
376-
source = "registry+https://github.com/rust-lang/crates.io-index"
377-
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
378-
379-
[[package]]
380-
name = "windows_x86_64_msvc"
381-
version = "0.48.0"
382-
source = "registry+https://github.com/rust-lang/crates.io-index"
383-
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"

compiler/rustc_codegen_gcc/Cargo.toml

-10
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,11 @@ default = ["master"]
2323

2424
[dependencies]
2525
gccjit = "2.1"
26-
2726
# Local copy.
2827
#gccjit = { path = "../gccjit.rs" }
2928

30-
object = { version = "0.30.1", default-features = false, features = [
31-
"std",
32-
"read",
33-
] }
34-
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
35-
# TODO(antoyo): make tempfile optional.
36-
tempfile = "3.7.1"
37-
3829
[dev-dependencies]
3930
lang_tester = "0.8.0"
40-
tempfile = "3.1.0"
4131
boml = "0.3.1"
4232

4333
[profile.dev]

compiler/rustc_codegen_gcc/src/lib.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
#![deny(clippy::pattern_type_mismatch)]
2525
#![allow(clippy::needless_lifetimes)]
2626

27+
// Some "regular" crates we want to share with rustc
28+
extern crate object;
29+
extern crate smallvec;
30+
extern crate tempfile;
31+
#[macro_use]
32+
extern crate tracing;
33+
34+
// The rustc crates we need
2735
extern crate rustc_apfloat;
2836
extern crate rustc_ast;
2937
extern crate rustc_attr;
@@ -42,8 +50,6 @@ extern crate rustc_middle;
4250
extern crate rustc_session;
4351
extern crate rustc_span;
4452
extern crate rustc_target;
45-
#[macro_use]
46-
extern crate tracing;
4753

4854
// This prevents duplicating functions and statics that are already part of the host rustc process.
4955
#[allow(unused_extern_crates)]

0 commit comments

Comments
 (0)