Espresso Current JDK Support? #8812
Answered
by
mukel
wilgaboury
asked this question in
Q&A
|
On the readme page found at https://github.com/oracle/graal/tree/master/espresso, it says "Espresso is a complete Java implementation which is kept up to date with the latest LTS JDK versions", but in a bunch of other assorted documentation it claims that espresso only supports JDK 8 and 11. I would like to use espresso for a project on JDK 21, is that currently possible? |
Answered by
mukel
Apr 22, 2024
Replies: 1 comment
|
Espresso requires a 21+ host, but can spawn guest contexts of Java 8, 11, 17 and 21 e.g. |
0 replies
Answer selected by
wilgaboury
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Espresso requires a 21+ host, but can spawn guest contexts of Java 8, 11, 17 and 21 e.g.
--java.JavaHome=/path/to/guest/java/homee.g. it will shape-shift into the version of specified guest Java home.If you don't specify the guest Java home, it will try to use the same as the host; so yes, you can use Espresso to run a Java 21 guest context on a Java 21 host.