Update to the cc crate
This is the name the `gcc` crate has moved to
This commit is contained in:
parent
041d3550f6
commit
7694ca419b
22 changed files with 66 additions and 57 deletions
|
|
@ -27,7 +27,7 @@ use std::process::Command;
|
|||
|
||||
use build_helper::output;
|
||||
use cmake;
|
||||
use gcc;
|
||||
use cc;
|
||||
|
||||
use Build;
|
||||
use util;
|
||||
|
|
@ -289,7 +289,7 @@ impl Step for TestHelpers {
|
|||
let _folder = build.fold_output(|| "build_test_helpers");
|
||||
println!("Building test helpers");
|
||||
t!(fs::create_dir_all(&dst));
|
||||
let mut cfg = gcc::Build::new();
|
||||
let mut cfg = cc::Build::new();
|
||||
|
||||
// We may have found various cross-compilers a little differently due to our
|
||||
// extra configuration, so inform gcc of these compilers. Note, though, that
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue