Skip to content

Commit 44289e3

Browse files
authored
Unrolled build for rust-lang#129290
Rollup merge of rust-lang#129290 - tgross35:pin-cc, r=Mark-Simulacrum Pin `cc` to 1.0.105 `cc` 1.0.106 removes support for Visual Studio 12. Pin to 1.0.105 so we don't drop support yet. Fixes: rust-lang#128722 (comment)
2 parents 697d953 + a5f6c15 commit 44289e3

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

Cargo.lock

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

411411
[[package]]
412412
name = "cc"
413-
version = "1.1.13"
413+
version = "1.0.105"
414414
source = "registry+https://github.com/rust-lang/crates.io-index"
415-
checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48"
416-
dependencies = [
417-
"shlex",
418-
]
415+
checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437"
419416

420417
[[package]]
421418
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.90"
11+
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
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.97"
13+
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
1414
# tidy-alphabetical-end

0 commit comments

Comments
 (0)