We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b758af commit 1d10516Copy full SHA for 1d10516
src/unix/linux_like/linux/arch/generic/mod.rs
@@ -94,7 +94,8 @@ cfg_if! {
94
// But they may still not have those _OLD ones.
95
if #[cfg(all(any(target_arch = "x86",
96
target_arch = "x86_64",
97
- target_arch = "aarch64"),
+ target_arch = "aarch64",
98
+ target_arch = "loongarch64"),
99
not(any(target_env = "musl", target_env = "ohos"))))] {
100
pub const SO_TIMESTAMP_NEW: ::c_int = 63;
101
pub const SO_TIMESTAMPNS_NEW: ::c_int = 64;
@@ -113,7 +114,8 @@ cfg_if! {
113
114
target_arch = "arm",
115
target_arch = "aarch64",
116
target_arch = "riscv64",
- target_arch = "s390x"))] {
117
+ target_arch = "s390x",
118
+ target_arch = "loongarch64"))] {
119
pub const FICLONE: ::c_ulong = 0x40049409;
120
pub const FICLONERANGE: ::c_ulong = 0x4020940D;
121
}
0 commit comments