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 461698b commit c90b89aCopy full SHA for c90b89a
libc-test/build.rs
@@ -3650,12 +3650,12 @@ fn config_gnu_bits(target: &str, cfg: &mut ctest::TestGenerator) {
3650
"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS must be 64 or unset if RUST_LIBC_UNSTABLE_GNU_TIME_BITS is 64"
3651
);
3652
if timebits == "64" {
3653
- cfg.define("_TIME_BITS", Some("64"));
+ // cfg.define("_TIME_BITS", Some("64"));
3654
cfg.cfg("linux_time_bits64", None);
3655
cfg.cfg("gnu_time_bits64", None);
3656
}
3657
if filebits == "64" {
3658
- cfg.define("_FILE_OFFSET_BITS", Some("64"));
+ // cfg.define("_FILE_OFFSET_BITS", Some("64"));
3659
cfg.cfg("gnu_file_offset_bits64", None);
3660
3661
0 commit comments