Enable detecting generic Linux ARM32 in Platform enum (#1110)

This commit is contained in:
Paul Rensing
2024-01-03 20:25:15 -05:00
committed by GitHub
parent 395cafa31a
commit dcf01f8b9e

View File

@@ -166,6 +166,8 @@ public enum Platform {
} else if (RuntimeDetector.isArm64()) {
// TODO - os detection needed?
return LINUX_AARCH64;
} else if (RuntimeDetector.isArm32()) {
return LINUX_ARM32;
} else {
// Unknown or otherwise unsupported platform
return Platform.UNKNOWN;