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 d788f3a commit d4fe9e6Copy full SHA for d4fe9e6
src/unix/linux_like/linux/arch/mips/mod.rs
@@ -379,8 +379,13 @@ cfg_if! {
379
cfg_if! {
380
if #[cfg(all(
381
any(target_arch = "mips", target_arch = "mips32r6"),
382
- any(target_env = "uclibc", target_env = "gnu"),
383
- linux_time_bits64
+ any(
+ all(target_env = "uclibc", linux_time_bits64),
384
+ all(
385
+ target_env = "gnu",
386
+ any(linux_time_bits64, gnu_file_offset_bits64)
387
+ )
388
389
))] {
390
pub const RLIM_INFINITY: crate::rlim_t = !0;
391
} else if #[cfg(all(
0 commit comments