瀏覽代碼

Merge #113

113: Use autocfg to probe for i128 r=cuviper a=cuviper



Co-authored-by: Josh Stone <cuviper@gmail.com>
bors[bot] 6 年之前
父節點
當前提交
852ec9380f
共有 2 個文件被更改,包括 8 次插入26 次删除
  1. 3 0
      Cargo.toml
  2. 5 26
      build.rs

+ 3 - 0
Cargo.toml

@@ -22,3 +22,6 @@ features = ["std"]
 default = ["std"]
 std = []
 i128 = []
+
+[build-dependencies]
+autocfg = "0.1.2"

+ 5 - 26
build.rs

@@ -1,35 +1,14 @@
+extern crate autocfg;
+
 use std::env;
-use std::io::Write;
-use std::process::{Command, Stdio};
 
 fn main() {
-    if probe("fn main() { 0i128; }") {
+    let ac = autocfg::new();
+    if ac.probe_type("i128") {
         println!("cargo:rustc-cfg=has_i128");
     } else if env::var_os("CARGO_FEATURE_I128").is_some() {
         panic!("i128 support was not detected!");
     }
-}
-
-/// Test if a code snippet can be compiled
-fn probe(code: &str) -> bool {
-    let rustc = env::var_os("RUSTC").unwrap_or_else(|| "rustc".into());
-    let out_dir = env::var_os("OUT_DIR").expect("environment variable OUT_DIR");
-
-    let mut child = Command::new(rustc)
-        .arg("--out-dir")
-        .arg(out_dir)
-        .arg("--emit=obj")
-        .arg("-")
-        .stdin(Stdio::piped())
-        .spawn()
-        .expect("rustc probe");
-
-    child
-        .stdin
-        .as_mut()
-        .expect("rustc stdin")
-        .write_all(code.as_bytes())
-        .expect("write rustc stdin");
 
-    child.wait().expect("rustc probe").success()
+    autocfg::rerun_path(file!());
 }