Skip to content

Commit 618c6b8

Browse files
committed
chore: wip
1 parent 06952e2 commit 618c6b8

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

libc-test/build.rs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -796,13 +796,9 @@ fn test_windows(target: &str) {
796796
// Needed for the Windows `time_t` test.
797797
println!("cargo::rustc-check-cfg=cfg(gnu_time_bits64)");
798798

799-
if i686 && gnu {
800-
if win_gnu_x86_time64 {
801-
cfg.cfg("gnu_time_bits64", None);
802-
println!("cargo::rustc-cfg=gnu_time_bits64");
803-
} else {
804-
cfg.define("_TIME_BITS", "32".into());
805-
}
799+
if i686 && gnu && win_gnu_x86_time64 {
800+
cfg.cfg("gnu_time_bits64", None);
801+
println!("cargo::rustc-cfg=gnu_time_bits64");
806802
}
807803

808804
headers!(

0 commit comments

Comments
 (0)