Skip to content

Commit dde74fe

Browse files
committed
Remove outdated cfg on le32
See rust-lang#45041 for the removal of the target (le32-unknown-nacl).
1 parent 9467f95 commit dde74fe

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

library/std/src/os/fuchsia/raw.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,7 @@ pub type pthread_t = c_ulong;
2424
#[stable(feature = "raw_ext", since = "1.1.0")]
2525
pub use self::arch::{blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
2626

27-
#[cfg(any(
28-
target_arch = "x86",
29-
target_arch = "le32",
30-
target_arch = "powerpc",
31-
target_arch = "arm"
32-
))]
27+
#[cfg(any(target_arch = "x86", target_arch = "powerpc", target_arch = "arm"))]
3328
mod arch {
3429
use crate::os::raw::{c_long, c_short, c_uint};
3530

library/std/src/os/l4re/raw.rs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pub use self::arch::{blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
2626

2727
#[cfg(any(
2828
target_arch = "x86",
29-
target_arch = "le32",
3029
target_arch = "m68k",
3130
target_arch = "powerpc",
3231
target_arch = "sparc",

library/std/src/os/linux/raw.rs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pub use self::arch::{blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
2626

2727
#[cfg(any(
2828
target_arch = "x86",
29-
target_arch = "le32",
3029
target_arch = "m68k",
3130
target_arch = "powerpc",
3231
target_arch = "sparc",

0 commit comments

Comments
 (0)