Skip to content

Commit 3f30b51

Browse files
authored
Rollup merge of #109779 - uweigand:s390x-gccjit-libc, r=WaffleLapkin
Update gccjit and remove libc 0.1 dependency Fixes #109774.
2 parents 41369b7 + 9cd1a31 commit 3f30b51

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

compiler/rustc_codegen_gcc/Cargo.lock

+10-16
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ dependencies = [
3535
[[package]]
3636
name = "gccjit"
3737
version = "1.0.0"
38-
source = "git+https://github.com/antoyo/gccjit.rs#eefb8c662d61477f34b7c32d26bcda5f1ef08432"
38+
source = "git+https://github.com/antoyo/gccjit.rs#fe242b7eb26980e6c78859d51c8d4cc1e43381a3"
3939
dependencies = [
4040
"gccjit_sys",
4141
]
4242

4343
[[package]]
4444
name = "gccjit_sys"
4545
version = "0.0.1"
46-
source = "git+https://github.com/antoyo/gccjit.rs#eefb8c662d61477f34b7c32d26bcda5f1ef08432"
46+
source = "git+https://github.com/antoyo/gccjit.rs#fe242b7eb26980e6c78859d51c8d4cc1e43381a3"
4747
dependencies = [
48-
"libc 0.1.12",
48+
"libc",
4949
]
5050

5151
[[package]]
@@ -64,7 +64,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6464
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
6565
dependencies = [
6666
"cfg-if",
67-
"libc 0.2.112",
67+
"libc",
6868
"wasi",
6969
]
7070

@@ -74,7 +74,7 @@ version = "0.1.19"
7474
source = "registry+https://github.com/rust-lang/crates.io-index"
7575
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
7676
dependencies = [
77-
"libc 0.2.112",
77+
"libc",
7878
]
7979

8080
[[package]]
@@ -85,20 +85,14 @@ checksum = "96bd995a092cac79868250589869b5a5d656b02a02bd74c8ebdc566dc7203090"
8585
dependencies = [
8686
"fm",
8787
"getopts",
88-
"libc 0.2.112",
88+
"libc",
8989
"num_cpus",
9090
"termcolor",
9191
"threadpool",
9292
"wait-timeout",
9393
"walkdir",
9494
]
9595

96-
[[package]]
97-
name = "libc"
98-
version = "0.1.12"
99-
source = "registry+https://github.com/rust-lang/crates.io-index"
100-
checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122"
101-
10296
[[package]]
10397
name = "libc"
10498
version = "0.2.112"
@@ -118,7 +112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
118112
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
119113
dependencies = [
120114
"hermit-abi",
121-
"libc 0.2.112",
115+
"libc",
122116
]
123117

124118
[[package]]
@@ -133,7 +127,7 @@ version = "0.8.4"
133127
source = "registry+https://github.com/rust-lang/crates.io-index"
134128
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
135129
dependencies = [
136-
"libc 0.2.112",
130+
"libc",
137131
"rand_chacha",
138132
"rand_core",
139133
"rand_hc",
@@ -234,7 +228,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
234228
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
235229
dependencies = [
236230
"cfg-if",
237-
"libc 0.2.112",
231+
"libc",
238232
"rand",
239233
"redox_syscall",
240234
"remove_dir_all",
@@ -271,7 +265,7 @@ version = "0.2.0"
271265
source = "registry+https://github.com/rust-lang/crates.io-index"
272266
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
273267
dependencies = [
274-
"libc 0.2.112",
268+
"libc",
275269
]
276270

277271
[[package]]

0 commit comments

Comments
 (0)