mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-20 00:51:41 +00:00
Disable Arm32 Builds (#1325)
Disables Arm32 builds and removes mention of the build option in the README.
This commit is contained in:
@@ -347,6 +347,27 @@ public class Main {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
logger.info(
|
||||
"Starting PhotonVision version "
|
||||
+ PhotonVersion.versionString
|
||||
+ " on "
|
||||
+ Platform.getPlatformName()
|
||||
+ (Platform.isRaspberryPi() ? (" (Pi " + PiVersion.getPiVersion() + ")") : ""));
|
||||
|
||||
try {
|
||||
if (!handleArgs(args)) {
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (ParseException e) {
|
||||
logger.error("Failed to parse command-line options!", e);
|
||||
}
|
||||
|
||||
// We don't want to trigger an exit in test mode or smoke test. This is specifically for MacOS.
|
||||
if (!(Platform.isSupported() || isSmoketest || isTestMode)) {
|
||||
logger.error("This platform is unsupported!");
|
||||
System.exit(1);
|
||||
}
|
||||
|
||||
try {
|
||||
boolean success = TestUtils.loadLibraries();
|
||||
|
||||
@@ -384,13 +405,6 @@ public class Main {
|
||||
+ e.getMessage());
|
||||
}
|
||||
|
||||
try {
|
||||
if (!handleArgs(args)) {
|
||||
System.exit(0);
|
||||
}
|
||||
} catch (ParseException e) {
|
||||
logger.error("Failed to parse command-line options!", e);
|
||||
}
|
||||
CVMat.enablePrint(false);
|
||||
PipelineProfiler.enablePrint(false);
|
||||
|
||||
@@ -403,13 +417,6 @@ public class Main {
|
||||
Logger.setLevel(LogGroup.General, logLevel);
|
||||
logger.info("Logging initialized in debug mode.");
|
||||
|
||||
logger.info(
|
||||
"Starting PhotonVision version "
|
||||
+ PhotonVersion.versionString
|
||||
+ " on "
|
||||
+ Platform.getPlatformName()
|
||||
+ (Platform.isRaspberryPi() ? (" (Pi " + PiVersion.getPiVersion() + ")") : ""));
|
||||
|
||||
PvCSCoreLogger.getInstance();
|
||||
|
||||
logger.debug("Loading ConfigManager...");
|
||||
|
||||
Reference in New Issue
Block a user