2020-10-08 00:38:59 +00:00
|
|
|
use std::env;
|
|
|
|
use std::path::Path;
|
2020-11-11 20:00:20 +00:00
|
|
|
use std::process::Command;
|
2020-10-08 00:38:59 +00:00
|
|
|
|
2019-10-20 18:51:12 +00:00
|
|
|
fn main() {
|
2020-11-11 20:00:20 +00:00
|
|
|
if let Some(rustc) = rustc_version() {
|
2023-01-07 20:37:15 +00:00
|
|
|
if rustc.minor < 60 {
|
|
|
|
println!("cargo:warning=The cxx crate requires a rustc version 1.60.0 or newer.");
|
2020-11-11 20:00:20 +00:00
|
|
|
println!(
|
|
|
|
"cargo:warning=You appear to be building with: {}",
|
|
|
|
rustc.version,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct RustVersion {
|
|
|
|
version: String,
|
|
|
|
minor: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rustc_version() -> Option<RustVersion> {
|
|
|
|
let rustc = env::var_os("RUSTC")?;
|
|
|
|
let output = Command::new(rustc).arg("--version").output().ok()?;
|
|
|
|
let version = String::from_utf8(output.stdout).ok()?;
|
|
|
|
let mut pieces = version.split('.');
|
|
|
|
if pieces.next() != Some("rustc 1") {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let minor = pieces.next()?.parse().ok()?;
|
|
|
|
Some(RustVersion { version, minor })
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|