Skip to content

Commit 1c28e5a

Browse files
committed
While at it, gcc -> cc in the integration tests.
1 parent ba16295 commit 1c28e5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bindgen-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build = "build.rs"
88

99
[build-dependencies]
1010
bindgen = { path = ".." }
11-
gcc = "0.3"
11+
cc = "1.0"
1212

1313
[features]
1414
testing_only_libclang_5 = ["bindgen/testing_only_libclang_5"]

bindgen-integration/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
extern crate bindgen;
2-
extern crate gcc;
2+
extern crate cc;
33

44
use bindgen::callbacks::{MacroParsingBehavior, ParseCallbacks};
55
use bindgen::Builder;
@@ -72,7 +72,7 @@ impl Drop for MacroCallback {
7272
}
7373

7474
fn main() {
75-
gcc::Build::new()
75+
cc::Build::new()
7676
.cpp(true)
7777
.file("cpp/Test.cc")
7878
.compile("libtest.a");

0 commit comments

Comments
 (0)