-
Notifications
You must be signed in to change notification settings - Fork 3k
Enable VM Option -H:+ForeignAPISupport only for JDK 24 and AMD 64
#48446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
zakkak
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the contribution @IvanPetkov23 !
|
CI testing the change with Mandrel for JDK 25 EA build: https://github.com/graalvm/mandrel/actions/runs/15729473941 Please don't merge before it completes. |
|
@zakkak https://github.com/graalvm/mandrel/actions/runs/15729473941/job/44328981038 seems to indicate a failure, or is that failure irrelevant? |
-H:+ForeignAPISupport only for JDK 24 and AMD 64-H:+ForeignAPISupport only for JDK 24 and AMD 64
| */ | ||
| if ((graalVMVersion.compareTo(io.quarkus.runtime.graal.GraalVM.Version.VERSION_24_2_0) >= 0 && AMD64.active) || | ||
| graalVMVersion.compareTo(io.quarkus.runtime.graal.GraalVM.Version.VERSION_25_0_0) >= 0) { | ||
| if (graalVMVersion.compareTo(io.quarkus.runtime.graal.GraalVM.Version.VERSION_24_2_0) == 0 && AMD64.active) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| if (graalVMVersion.compareTo(io.quarkus.runtime.graal.GraalVM.Version.VERSION_24_2_0) == 0 && AMD64.active) { | |
| if (graalVMVersion.compareTo(VERSION_24_2_0) == 0 && AMD64.active) { |
could consider import afterwards.
The failure is irrelevant. |
Status for workflow
|
Follow up to quarkusio#48446 Relates to quarkusio#48374
-H:+ForeignAPISupportexplicitely with GraalVM for JDK 25 #48374