Skip to content

Commit 0c53acc

Browse files
authored
Rollup merge of #85649 - ChrisDenton:update-cc, r=matthewjasper
Update cc Recent commits have improved `cc`'s finding of MSVC tools on Windows. In particular it should help to address these issues: #83043 and #43468
2 parents e7c9469 + e238ee3 commit 0c53acc

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ version = "0.1.0"
441441

442442
[[package]]
443443
name = "cc"
444-
version = "1.0.67"
444+
version = "1.0.68"
445445
source = "registry+https://github.com/rust-lang/crates.io-index"
446-
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
446+
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
447447
dependencies = [
448448
"jobserver",
449449
]

compiler/rustc_codegen_ssa/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test = false
99

1010
[dependencies]
1111
bitflags = "1.2.1"
12-
cc = "1.0.67"
12+
cc = "1.0.68"
1313
itertools = "0.9"
1414
tracing = "0.1"
1515
libc = "0.2.50"
@@ -24,7 +24,7 @@ rustc_middle = { path = "../rustc_middle" }
2424
rustc_apfloat = { path = "../rustc_apfloat" }
2525
rustc_attr = { path = "../rustc_attr" }
2626
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
27-
rustc_data_structures = { path = "../rustc_data_structures"}
27+
rustc_data_structures = { path = "../rustc_data_structures" }
2828
rustc_errors = { path = "../rustc_errors" }
2929
rustc_fs_util = { path = "../rustc_fs_util" }
3030
rustc_hir = { path = "../rustc_hir" }

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ libc = "0.2.73"
1313

1414
[build-dependencies]
1515
build_helper = { path = "../../src/build_helper" }
16-
cc = "1.0.67"
16+
cc = "1.0.68"

library/profiler_builtins/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ core = { path = "../core" }
1414
compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] }
1515

1616
[build-dependencies]
17-
cc = "1.0.67"
17+
cc = "1.0.68"

library/unwind/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ compiler_builtins = "0.1.0"
2121
cfg-if = "0.1.8"
2222

2323
[build-dependencies]
24-
cc = "1.0.67"
24+
cc = "1.0.68"
2525

2626
[features]
2727
llvm-libunwind = []

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cmake = "0.1.38"
4040
filetime = "0.2"
4141
num_cpus = "1.0"
4242
getopts = "0.2.19"
43-
cc = "1.0.67"
43+
cc = "1.0.68"
4444
libc = "0.2"
4545
serde = { version = "1.0.8", features = ["derive"] }
4646
serde_json = "1.0.2"

0 commit comments

Comments
 (0)