mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-01-24 14:34:15 +08:00
添加对 Linux RISC-V 64 平台的基本支持 (#2187)
This commit is contained in:
parent
af36a0ac2a
commit
316607b333
@ -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"),
|
||||
|
@ -41,6 +41,7 @@ val jfxPlatforms = listOf(
|
||||
Platform("linux-arm32", "linux-arm32-monocle", unsupportedModules = listOf("media", "web")),
|
||||
Platform("linux-arm64", "linux-aarch64"),
|
||||
Platform("linux-loongarch64_ow", "linux", groupId = "org.glavo.hmcl.openjfx", version = "19-ea+10-loongson64", unsupportedModules = listOf("media", "web")),
|
||||
Platform("linux-riscv64", "linux", groupId = "org.glavo.hmcl.openjfx", version = "19.0.2.1-riscv64", unsupportedModules = listOf("media", "web")),
|
||||
)
|
||||
|
||||
val jfxInClasspath =
|
||||
|
Loading…
Reference in New Issue
Block a user