Merge pull request #24 from Niederb/master

Switch from gcc to cc
This commit is contained in:
Alex Crichton
2019-02-28 10:31:21 -06:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -8,4 +8,4 @@ build = "build.rs"
libc = "0.2"
[build-dependencies]
gcc = "0.3"
cc = "1.0"

View File

@@ -1,7 +1,7 @@
extern crate gcc;
extern crate cc;
fn main() {
gcc::Build::new()
cc::Build::new()
.file("src/triple.cpp")
.cpp(true)
.compile("libtriple.a");