From b9047adc06525d6905f3c098cae61dda31b13f70 Mon Sep 17 00:00:00 2001 From: dirreke Date: Sun, 22 Oct 2023 19:57:03 +0800 Subject: [PATCH] support csky target in ioctl/linux.rs --- src/ioctl/linux.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ioctl/linux.rs b/src/ioctl/linux.rs index 9bf1d261d..7975f0aa5 100644 --- a/src/ioctl/linux.rs +++ b/src/ioctl/linux.rs @@ -50,7 +50,8 @@ const DIR_MASK: RawOpcode = (1 << DIR_BITS) - 1; target_arch = "aarch64", target_arch = "riscv32", target_arch = "riscv64", - target_arch = "loongarch64" + target_arch = "loongarch64", + target_arch = "csky" ))] mod consts { use super::RawOpcode;