正在显示
1 个修改的文件
包含
2 行增加
和
0 行删除
| @@ -189,6 +189,8 @@ public class LibraryUtils { | @@ -189,6 +189,8 @@ public class LibraryUtils { | ||
| 189 | detectedArch = "x86"; | 189 | detectedArch = "x86"; |
| 190 | } else if (arch.startsWith("aarch64") || arch.startsWith("arm64")) { | 190 | } else if (arch.startsWith("aarch64") || arch.startsWith("arm64")) { |
| 191 | detectedArch = "aarch64"; | 191 | detectedArch = "aarch64"; |
| 192 | + } else if (arch.startsWith("arm")) { | ||
| 193 | + detectedArch = "arm"; //armv8l架构 | ||
| 192 | } else { | 194 | } else { |
| 193 | throw new IllegalStateException("Unsupported arch:" + arch); | 195 | throw new IllegalStateException("Unsupported arch:" + arch); |
| 194 | } | 196 | } |
-
请 注册 或 登录 后发表评论