Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does GraalVM JVM support java 11?

How build GraalVM JVM for Java 11?

(I don't see any official distributives only java 8)
like image 830
Levik Avatar asked Dec 10 '18 19:12

Levik


2 Answers

Not currently.

From this GitHub issue, it seems that it will be ready around the end of February, 2019. However, Java 11 does include support for the Graal compiler, which can be enabled with the following flags:

-XX:+UnlockExperimentalVMOptions -XX:+UseJVMCICompiler

Edit: According to that GitHub issue, it looks like Graal 19.3 will be released on November 19, 2019, which should include Java 11 support.

like image 65
Jacob G. Avatar answered Oct 11 '22 13:10

Jacob G.


Yes the new version of GraalVM 19.3.0 supports Java 11.

please go to the below link for more information

https://medium.com/graalvm/graalvm-19-3-0-dfdb6f4ec8ed

like image 22
Munish Chouhan Avatar answered Oct 11 '22 12:10

Munish Chouhan