Merge pull request #196 from alexcrichton/cc

Update to the `cc` dependency
master
Alex Crichton 2017-09-27 17:38:06 -05:00 committed by GitHub
commit 789e8c159f
3 changed files with 6 additions and 5 deletions

View File

@ -8,12 +8,12 @@ version = "0.1.0"
cast = { version = "0.2.2", features = ["x128"], optional = true }
rand = { version = "0.3.15", optional = true }
[build-dependencies.gcc]
[build-dependencies.cc]
optional = true
version = "0.3.53"
version = "1.0"
[features]
c = ["gcc"]
c = ["cc"]
compiler-builtins = []
default = ["compiler-builtins"]
mem = []

View File

@ -3957,7 +3957,7 @@ macro_rules! panic {
#[cfg(feature = "c")]
mod c {
extern crate gcc;
extern crate cc;
use std::collections::BTreeMap;
use std::env;
@ -4008,7 +4008,7 @@ mod c {
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap();
let target_vendor = env::var("CARGO_CFG_TARGET_VENDOR").unwrap();
let cfg = &mut gcc::Build::new();
let cfg = &mut cc::Build::new();
cfg.warnings(false);

View File

@ -4,5 +4,6 @@
not(any(target_env = "gnu", target_env = "musl")),
target_os = "linux",
test), no_std)]
#![cfg(not(target_arch = "mips"))] // FIXME(#168)
include!(concat!(env!("OUT_DIR"), "/floattidf.rs"));