forked from nextest-rs/nextest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
37 lines (32 loc) · 1.12 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Adapted from
//! https://github.com/dtolnay/syn/blob/a54fb0098c6679f1312113ae2eec0305c51c7390/build.rs.
use std::{env, process::Command, str};
// The rustc-cfg strings below are *not* public API. Please let us know by
// opening a GitHub issue if your build environment requires some way to enable
// these cfgs other than by executing our build script.
fn main() {
let compiler = match rustc_version() {
Some(compiler) => compiler,
None => return,
};
// NOTE:
// Adding a new cfg gated by Rust version MUST be accompanied by an addition to the matrix in
// .github/workflows/ci.yml.
if compiler.minor >= 64 {
println!("cargo:rustc-cfg=process_group");
}
}
struct Compiler {
minor: u32,
}
fn rustc_version() -> Option<Compiler> {
let rustc = env::var_os("RUSTC")?;
let output = Command::new(rustc).arg("--version").output().ok()?;
let version = str::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(Compiler { minor })
}