Skip to content

Commit 0185395

Browse files
committed
Fix musl_time64_abi cfg flag in build script
By using set_cfg() helper.
1 parent b56c65a commit 0185395

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const ALLOWED_CFGS: &'static [&'static str] = &[
1717
"libc_const_extern_fn",
1818
"libc_const_extern_fn_unstable",
1919
"libc_deny_warnings",
20+
"musl_time64_abi",
2021
];
2122

2223
// Extra values to allow for check-cfg.
@@ -70,7 +71,7 @@ fn main() {
7071
// Some ABIs need to redirect time related symbols to their time64
7172
// equivalents. See #2088 and #1848 for more information.
7273
if is_musl_time64_abi() {
73-
println!("cargo:rustc-cfg=musl_time64_abi");
74+
set_cfg("musl_time64_abi");
7475
}
7576

7677
// On CI: deny all warnings

0 commit comments

Comments
 (0)