Questions tagged [native-aot]

Native Ahead of Time compilation is a feature introduced in .NET 7. It currently only targets .NET 7 apps, and within .NET 7, really only console apps - it is not supported for ASP.NET Core. Native AOT apps don't use a Just-In-Time (JIT) compiler when the application runs. Native AOT apps can run in restricted environments where a JIT is not allowed. It's benefit is most significant for workloads with a high number of deployed instances, such as cloud infrastructure and hyper-scale services.

16 questions
-2
votes
0 answers

Can I use an AOT compiler to compile Minecraft game into an EXE file?

Minecraft JE (Java Edition) needs JVM to run. Is it possible to compile it into an EXE file via AOT compiler of GraalVM? If possible, how should I do? I installed GraalVM and native-image tool but I don't know the main class of Minecraft.
1
2