use std::env::var;
use std::io::Write;
fn main() {
if has_io_safety() {
use_feature("io_lifetimes_use_std")
}
use_feature_or_nothing("can_vector"); use_feature_or_nothing("write_all_vectored");
println!("cargo:rerun-if-changed=build.rs");
}
fn use_feature_or_nothing(feature: &str) {
if has_feature(feature) {
use_feature(feature);
}
}
fn use_feature(feature: &str) {
println!("cargo:rustc-cfg={}", feature);
}
fn has_feature(feature: &str) -> bool {
let out_dir = var("OUT_DIR").unwrap();
let rustc = var("RUSTC").unwrap();
let mut child = std::process::Command::new(rustc)
.arg("--crate-type=rlib") .arg("--emit=metadata") .arg("--out-dir")
.arg(out_dir) .arg("-") .stdin(std::process::Stdio::piped()) .spawn()
.unwrap();
writeln!(child.stdin.take().unwrap(), "#![feature({})]", feature).unwrap();
child.wait().unwrap().success()
}
fn has_io_safety() -> bool {
let out_dir = var("OUT_DIR").unwrap();
let rustc = var("RUSTC").unwrap();
let mut child = std::process::Command::new(rustc)
.arg("--crate-type=rlib") .arg("--emit=metadata") .arg("--out-dir")
.arg(out_dir) .arg("-") .stdin(std::process::Stdio::piped()) .spawn()
.unwrap();
writeln!(
child.stdin.take().unwrap(),
"\
#[cfg(unix)]\n\
use std::os::unix::io::OwnedFd as Owned;\n\
#[cfg(target_os = \"wasi\")]\n\
use std::os::wasi::io::OwnedFd as Owned;\n\
#[cfg(windows)]\n\
use std::os::windows::io::OwnedHandle as Owned;\n\
\n\
pub type Success = Owned;\n\
"
)
.unwrap();
child.wait().unwrap().success()
}