凌封
Committed by GitHub

Support armv8l in Java API (#2556)

... ... @@ -189,6 +189,8 @@ public class LibraryUtils {
detectedArch = "x86";
} else if (arch.startsWith("aarch64") || arch.startsWith("arm64")) {
detectedArch = "aarch64";
} else if (arch.startsWith("arm")) {
detectedArch = "arm"; //armv8l架构
} else {
throw new IllegalStateException("Unsupported arch:" + arch);
}
... ...