third_party_rust_memoffset/build.rs

26 lines
685 B
Rust
Raw Permalink Normal View History

2020-03-16 17:23:25 +00:00
extern crate autocfg;
2019-03-15 09:24:04 +00:00
fn main() {
2020-03-16 17:07:13 +00:00
let ac = autocfg::new();
2019-03-15 09:24:04 +00:00
// Check for a minimum version for a few features
if ac.probe_rustc_version(1, 20) {
println!("cargo:rustc-cfg=tuple_ty");
}
2020-03-16 17:07:13 +00:00
if ac.probe_rustc_version(1, 31) {
println!("cargo:rustc-cfg=allow_clippy");
}
2020-03-16 17:07:13 +00:00
if ac.probe_rustc_version(1, 36) {
println!("cargo:rustc-cfg=maybe_uninit");
2019-03-15 09:24:04 +00:00
}
2020-03-16 17:07:13 +00:00
if ac.probe_rustc_version(1, 40) {
println!("cargo:rustc-cfg=doctests");
}
if ac.probe_rustc_version(1, 51) {
println!("cargo:rustc-cfg=raw_ref_macros");
}
if ac.probe_rustc_version(1, 65) {
println!("cargo:rustc-cfg=stable_const");
}
2019-03-15 09:24:04 +00:00
}