添加对 Linux RISC-V 64 平台的基本支持 (#2187)

This commit is contained in:
Glavo
2023-04-01 06:29:51 +08:00
committed by GitHub
parent af36a0ac2a
commit 316607b333
2 changed files with 3 additions and 2 deletions

View File

@@ -46,8 +46,8 @@ public enum Architecture {
PPC64LE(BIT_64, "PowerPC-64 (Little-Endian)"),
S390(BIT_32),
S390X(BIT_64, "S390x"),
RISCV32(BIT_32, "RISC-V (32 Bit)"),
RISCV64(BIT_64, "RISC-V"),
RISCV32(BIT_32, "RISC-V 32"),
RISCV64(BIT_64, "RISC-V 64"),
LOONGARCH32(BIT_32, "LoongArch32"),
LOONGARCH64_OW(BIT_64, "LoongArch64 (old world)"),
LOONGARCH64(BIT_64, "LoongArch64"),