-
Hi, According to my understanding Quarkus has nothing to do with GraalVM JIT isn't? Quarkus is ONLY concerned with native images through Mandrel (which have nothing to do with JIT compilation). If I want to use GraalVM JIT I have to install Graal and run my program within the Graal environment correct? (regular use of Graal according to it's documentation) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
Quarkus does not do anything to explicitly aid GraalVM JIT compiler per se.
That is false. Quarkus can run with your JVM of choice, e.g. with HotSpot in OpenJDK. It could also be Ahead Of Time compiled into a single executable, utilizing Substrate VM as its runtime VM. You need a
That is correct. See the docs on available options. Note that Mandrel's |
Beta Was this translation helpful? Give feedback.
@PyAntony
Quarkus does not do anything to explicitly aid GraalVM JIT compiler per se.
That is false. Quarkus can run with your JVM of choice, e.g. with HotSpot in OpenJDK. It could also be Ahead Of Time compiled into a single executable, utilizing Substrate VM as its runtime VM. You need a
native-image
tool for that. One can get that either from GraalVM distribution or from a Mandrel distribution. The diference between what you download as GraalVM and what you download as Mandrel is outlined over here