We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99376a9 + 6e8fe73 commit 12fcd24Copy full SHA for 12fcd24
unwind/Cargo.toml
@@ -10,7 +10,7 @@ fallible-iterator = "0.1"
10
log = "0.4"
11
12
[build-dependencies]
13
-gcc = "0.3.52"
+cc = "1.0.35"
14
15
[dev-dependencies]
16
backtrace = "0.3"
unwind/build.rs
@@ -1,10 +1,10 @@
1
-extern crate gcc;
+extern crate cc;
2
use std::env;
3
4
fn main() {
5
match env::var("CARGO_FEATURE_ASM") {
6
Err(env::VarError::NotPresent) => {
7
- gcc::Build::new()
+ cc::Build::new()
8
.file("src/unwind_helper.c")
9
.compile("unwind_helper");
},
0 commit comments