Skip to content

Commit 070107c

Browse files
Rollup merge of rust-lang#103744 - palfrey:unwind-upgrade-cc, r=Mark-Simulacrum
Upgrade cc for working is_flag_supported on cross-compiles rust-lang#85806 fixed unwind v.s gcc support on later Android ndks using `is_flag_supported`. However, due to rust-lang/cc-rs#675, this didn't work properly on cross-compiles. rust-lang/cc-rs@3eeb50b fixes this, and was released in cc 1.0.74, hence the upgrade
2 parents 591c3d6 + a9d7cfc commit 070107c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -488,9 +488,9 @@ version = "0.1.0"
488488

489489
[[package]]
490490
name = "cc"
491-
version = "1.0.73"
491+
version = "1.0.74"
492492
source = "registry+https://github.com/rust-lang/crates.io-index"
493-
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
493+
checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
494494
dependencies = [
495495
"jobserver",
496496
]

library/unwind/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ compiler_builtins = "0.1.0"
2020
cfg-if = "1.0"
2121

2222
[build-dependencies]
23-
cc = "1.0.69"
23+
cc = "1.0.74"
2424

2525
[features]
2626

0 commit comments

Comments
 (0)