Skip to content

Commit 4fc810a

Browse files
committed
Auto merge of #131070 - tgross35:update-root-cc, r=<try>
Unpin `cc` and upgrade to the latest version `cc` was previously pinned because 1.1.106 dropped support for Visual Studio 12 (2013), and we wanted to decouple that from the rest of the automated updates. As noted in [2], there is no longer anything indicating we support VS2013, so it should be okay to unpin it. `cc` 1.1.22 contains a fix that may help improve the high MSVC CI failure rate [3], so we also have motivation to update to that point. [1]: #129307 [2]: #129307 (comment) [3]: #127883 try-job: x86_64-msvc-ext
2 parents c3ce4e6 + eaaa943 commit 4fc810a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Cargo.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,12 @@ version = "0.1.0"
393393

394394
[[package]]
395395
name = "cc"
396-
version = "1.0.105"
396+
version = "1.1.23"
397397
source = "registry+https://github.com/rust-lang/crates.io-index"
398-
checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437"
398+
checksum = "3bbb537bb4a30b90362caddba8f360c0a56bc13d3a5570028e7197204cb54a17"
399+
dependencies = [
400+
"shlex",
401+
]
399402

400403
[[package]]
401404
name = "cfg-if"

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
ar_archive_writer = "0.4.2"
99
arrayvec = { version = "0.7", default-features = false }
1010
bitflags = "2.4.1"
11-
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
11+
cc = "1.1.23"
1212
either = "1.5.0"
1313
itertools = "0.12"
1414
jobserver = "0.1.28"

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ libc = "0.2.73"
1010

1111
[build-dependencies]
1212
# tidy-alphabetical-start
13-
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
13+
cc = "1.1.23"
1414
# tidy-alphabetical-end

0 commit comments

Comments
 (0)