We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06952e2 commit 618c6b8Copy full SHA for 618c6b8
1 file changed
libc-test/build.rs
@@ -796,13 +796,9 @@ fn test_windows(target: &str) {
796
// Needed for the Windows `time_t` test.
797
println!("cargo::rustc-check-cfg=cfg(gnu_time_bits64)");
798
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
- }
+ if i686 && gnu && win_gnu_x86_time64 {
+ cfg.cfg("gnu_time_bits64", None);
+ println!("cargo::rustc-cfg=gnu_time_bits64");
806
}
807
808
headers!(
0 commit comments