now need to get m2

This commit is contained in:
2026-01-11 15:38:14 +02:00
parent 8f022da4ef
commit 6604c67ec5
10 changed files with 177 additions and 82 deletions

View File

@@ -155,8 +155,17 @@ findbuild:
CommandLine()->CreateCommandLine(c, v);
Plat_InitRandom();
if (CommandLine()->CheckParam("-v") || CommandLine()->CheckParam("--version"))
{
V_printf("fpc version v1\n");
V_printf("built " __DATE__ " " __TIME__ "\n");
V_printf("built for %s\n", Target_t::HostTarget().GetTriplet().GetString());
return 0;
}
if (CommandLine()->CheckParam("build"))
return build();
build();
const char *szDeployDevice = CommandLine()->ParamValue("deploy");
Plat_ShutdownRandom();
return 0;