mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
uucore: add support for loongarch64 (#5574)
* uucore: add support for loongarch64 * add loongarch --------- Co-authored-by: Sylvestre Ledru <sylvestre@debian.org>
This commit is contained in:
parent
fff1302bdf
commit
550f3b0c48
2 changed files with 3 additions and 0 deletions
|
@ -37,6 +37,7 @@ aarch
|
||||||
flac
|
flac
|
||||||
impls
|
impls
|
||||||
lzma
|
lzma
|
||||||
|
loongarch
|
||||||
|
|
||||||
# * names
|
# * names
|
||||||
BusyBox
|
BusyBox
|
||||||
|
|
|
@ -119,6 +119,7 @@ impl FileInformation {
|
||||||
not(target_os = "solaris"),
|
not(target_os = "solaris"),
|
||||||
not(target_arch = "aarch64"),
|
not(target_arch = "aarch64"),
|
||||||
not(target_arch = "riscv64"),
|
not(target_arch = "riscv64"),
|
||||||
|
not(target_arch = "loongarch64"),
|
||||||
target_pointer_width = "64"
|
target_pointer_width = "64"
|
||||||
))]
|
))]
|
||||||
return self.0.st_nlink;
|
return self.0.st_nlink;
|
||||||
|
@ -133,6 +134,7 @@ impl FileInformation {
|
||||||
target_os = "solaris",
|
target_os = "solaris",
|
||||||
target_arch = "aarch64",
|
target_arch = "aarch64",
|
||||||
target_arch = "riscv64",
|
target_arch = "riscv64",
|
||||||
|
target_arch = "loongarch64",
|
||||||
not(target_pointer_width = "64")
|
not(target_pointer_width = "64")
|
||||||
)
|
)
|
||||||
))]
|
))]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue