We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad26dab commit a5e2311Copy full SHA for a5e2311
library/std/src/env.rs
@@ -895,6 +895,7 @@ pub mod consts {
895
/// - x86_64
896
/// - arm
897
/// - aarch64
898
+ /// - loongarch64
899
/// - m68k
900
/// - mips
901
/// - mips64
library/std/src/os/linux/raw.rs
@@ -231,6 +231,7 @@ mod arch {
231
}
232
233
#[cfg(any(
234
+ target_arch = "loongarch64",
235
target_arch = "mips64",
236
target_arch = "s390x",
237
target_arch = "sparc64",
library/std/src/sys/common/alloc.rs
@@ -22,6 +22,7 @@ pub const MIN_ALIGN: usize = 8;
22
23
target_arch = "x86_64",
24
target_arch = "aarch64",
25
26
27
28
0 commit comments