Skip to content

Commit

Permalink
Enable detecting generic Linux ARM32 in Platform enum (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
prensing authored Jan 4, 2024
1 parent 395cafa commit dcf01f8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ private static Platform getCurrentPlatform() {
} 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;
Expand Down

0 comments on commit dcf01f8

Please sign in to comment.