Skip to content

Commit 49761b0

Browse files
committed
Auto merge of rust-lang#135067 - ChrisDenton:cc, r=jieyouxu
Bump cc in the compiler Changelog: - Regenerate target info ([rust-lang#1342](rust-lang/cc-rs#1342)) - Allow using Visual Studio target names in `find_tool` ([rust-lang#1335](rust-lang/cc-rs#1335)) - Fix `is_flag_supported` on msvc ([rust-lang#1336](rust-lang/cc-rs#1336))
2 parents 7349f6b + cfe6132 commit 49761b0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -419,9 +419,9 @@ version = "0.1.0"
419419

420420
[[package]]
421421
name = "cc"
422-
version = "1.2.6"
422+
version = "1.2.7"
423423
source = "registry+https://github.com/rust-lang/crates.io-index"
424-
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
424+
checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7"
425425
dependencies = [
426426
"shlex",
427427
]

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ arrayvec = { version = "0.7", default-features = false }
1010
bitflags = "2.4.1"
1111
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
1212
# `cc` in `rustc_llvm` if you update the `cc` here.
13-
cc = "=1.2.6"
13+
cc = "=1.2.7"
1414
either = "1.5.0"
1515
itertools = "0.12"
1616
pathdiff = "0.2.0"

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ libc = "0.2.73"
1212
# tidy-alphabetical-start
1313
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
1414
# pinned `cc` in `rustc_codegen_ssa` if you update `cc` here.
15-
cc = "=1.2.6"
15+
cc = "=1.2.7"
1616
# tidy-alphabetical-end

0 commit comments

Comments
 (0)