We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56c65a commit 0185395Copy full SHA for 0185395
build.rs
@@ -17,6 +17,7 @@ const ALLOWED_CFGS: &'static [&'static str] = &[
17
"libc_const_extern_fn",
18
"libc_const_extern_fn_unstable",
19
"libc_deny_warnings",
20
+ "musl_time64_abi",
21
];
22
23
// Extra values to allow for check-cfg.
@@ -70,7 +71,7 @@ fn main() {
70
71
// Some ABIs need to redirect time related symbols to their time64
72
// equivalents. See #2088 and #1848 for more information.
73
if is_musl_time64_abi() {
- println!("cargo:rustc-cfg=musl_time64_abi");
74
+ set_cfg("musl_time64_abi");
75
}
76
77
// On CI: deny all warnings
0 commit comments