Disable Arm32 Builds (#1325)

Disables Arm32 builds and removes mention of the build option in the README.
This commit is contained in:
Craftzman7
2024-05-19 17:35:40 -07:00
committed by GitHub
parent 713fad6f6b
commit 9e58f5ed02
6 changed files with 29 additions and 25 deletions

View File

@@ -48,12 +48,12 @@ public enum Platform {
"Linux AARCH64", "linuxarm64", false, OSType.LINUX, true), // Jetson Nano, Jetson TX2
// PhotonVision Supported (Manual build/install)
LINUX_ARM32("Linux ARM32", "linuxarm32", false, OSType.LINUX, true), // ODROID XU4, C1+
LINUX_ARM64("Linux ARM64", "linuxarm64", false, OSType.LINUX, true), // ODROID C2, N2
// Completely unsupported
WINDOWS_32("Windows x86", "windowsx64", false, OSType.WINDOWS, false),
MACOS("Mac OS", "osxuniversal", false, OSType.MACOS, false),
LINUX_ARM32("Linux ARM32", "linuxarm32", false, OSType.LINUX, false), // ODROID XU4, C1+
UNKNOWN("Unsupported Platform", "", false, OSType.UNKNOWN, false);
private enum OSType {
@@ -119,6 +119,10 @@ public enum Platform {
return isRoot;
}
public static boolean isSupported() {
return currentPlatform.isSupported;
}
//////////////////////////////////////////////////////
// Debug info related to unknown platforms for debug help