Skip to content

Commit

Permalink
Update version of cc crate (#592)
Browse files Browse the repository at this point in the history
Reason:

In order to build the Windows version of the Rust toolchain for the Android platform, the following patch to the cc is crate is required to avoid incorrectly determining that we are building with the Android NDK: rust-lang/cc-rs@57853c4

This patch is present in version 1.0.80 and newer versions of the cc crate. The rustc source distribution currently has 3 different versions of cc in the vendor directory, only one of which has the necessary fix.

We (the Android Rust toolchain) are currently maintaining local patches to upgrade the cc crate dependency versions, which we would like to upstream.
  • Loading branch information
jfgoog committed Mar 14, 2024
1 parent ea7dc8e commit 6fa4b85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -54,7 +54,7 @@ winapi = { version = "0.3.9", optional = true }
[build-dependencies]
# Only needed for Android, but cannot be target dependent
# https://github.com/rust-lang/cargo/issues/4932
cc = "1.0.67"
cc = "1.0.90"

[dev-dependencies]
dylib-dep = { path = "crates/dylib-dep" }
Expand Down
2 changes: 1 addition & 1 deletion crates/as-if-std/Cargo.toml
Expand Up @@ -28,7 +28,7 @@ features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive']

[build-dependencies]
# Dependency of the `backtrace` crate
cc = "1.0.67"
cc = "1.0.90"

[features]
default = ['backtrace']
Expand Down

0 comments on commit 6fa4b85

Please sign in to comment.