mirror of
https://gitee.com/openharmony/third_party_rust_memoffset
synced 2024-11-23 07:10:22 +00:00
17 lines
402 B
Rust
17 lines
402 B
Rust
extern crate autocfg;
|
|
|
|
fn main() {
|
|
let ac = autocfg::new();
|
|
|
|
// Check for a minimum version for a few features
|
|
if ac.probe_rustc_version(1, 31) {
|
|
println!("cargo:rustc-cfg=allow_clippy");
|
|
}
|
|
if ac.probe_rustc_version(1, 36) {
|
|
println!("cargo:rustc-cfg=maybe_uninit");
|
|
}
|
|
if ac.probe_rustc_version(1, 40) {
|
|
println!("cargo:rustc-cfg=doctests");
|
|
}
|
|
}
|