Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ task:
- name: Linux i686 musl
env:
TARGET: i686-unknown-linux-musl
- name: Linux LoongArch64
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add this here, Nix has switched to GitHub action for most CI checks:

powerpc64le-unknown-linux-gnu,

env:
TARGET: loongarch64-unknown-linux-gnu
- name: Linux MIPS
env:
TARGET: mips-unknown-linux-gnu
Expand Down
3 changes: 2 additions & 1 deletion src/sys/ioctl/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ mod consts {
target_arch = "x86_64",
target_arch = "aarch64",
target_arch = "riscv32",
target_arch = "riscv64"
target_arch = "riscv64",
target_arch = "loongarch64"
))]
mod consts {
#[doc(hidden)]
Expand Down