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.
1 parent ba16295 commit 1c28e5aCopy full SHA for 1c28e5a
bindgen-integration/Cargo.toml
@@ -8,7 +8,7 @@ build = "build.rs"
8
9
[build-dependencies]
10
bindgen = { path = ".." }
11
-gcc = "0.3"
+cc = "1.0"
12
13
[features]
14
testing_only_libclang_5 = ["bindgen/testing_only_libclang_5"]
bindgen-integration/build.rs
@@ -1,5 +1,5 @@
1
extern crate bindgen;
2
-extern crate gcc;
+extern crate cc;
3
4
use bindgen::callbacks::{MacroParsingBehavior, ParseCallbacks};
5
use bindgen::Builder;
@@ -72,7 +72,7 @@ impl Drop for MacroCallback {
72
}
73
74
fn main() {
75
- gcc::Build::new()
+ cc::Build::new()
76
.cpp(true)
77
.file("cpp/Test.cc")
78
.compile("libtest.a");
0 commit comments