blob: 2f5012ad763a3879de94b0ffd7d0a9aa277b770d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
extern crate autocfg;
fn main() {
let cfg = autocfg::new();
if cfg.probe_rustc_version(1, 31) {
autocfg::emit("has_min_const_fn");
}
cfg.emit_type_cfg("core::sync::atomic::AtomicU8", "has_atomic_u8");
cfg.emit_type_cfg("core::sync::atomic::AtomicU16", "has_atomic_u16");
cfg.emit_type_cfg("core::sync::atomic::AtomicU32", "has_atomic_u32");
cfg.emit_type_cfg("core::sync::atomic::AtomicU64", "has_atomic_u64");
cfg.emit_type_cfg("core::sync::atomic::AtomicU128", "has_atomic_u128");
}
|