Vojin Jovanovic
Vojin Jovanovic
Well, the user code that does not use reflection should not be able to reach elements marked as `@Delete`. When using reflection users can reach anything, and in these cases...
This flag is also historic from the time when Native Image did not support many things. Now, Native Image does not support only run-time class definition and a few other...
I used JVMCI to get the class information and we seem to be good: https://github.com/oracle/graal/actions/runs/8896343413 Thanks @zakkak!
Thanks for reporting this issue, adding more instructions would help reproduce this issue: which subproject, how to run, etc. Also, does this happen with the statically linked binary or with...
`-H:ThrowMissingRegistrationErrors=` is a build-time flag that throws when there is missing reflection metadata. It can be used in conjunction with `-H:MissingRegistrationReportingMode=Warn` to print missing elements, or `-H:MissingRegistrationReportingMode=Exit` to hard fail...
Is the reflection configured properly? No exceptions when you use: `-H:ThrowMissingRegistrationErrors=`? If no exceptions, you can send me the keys over the community slack: [Slack channels](https://www.graalvm.org/slack-invitation/)
I don't see another way without making a breaking change. I would not be worried as this is used only by the power users.
Thanks for detecting this. I managed to reproduce and there are multiple problems here: 1) The agent outputs a lot of files that probably should not be in the image....
Thank you for reporting this issue! This is a known problem and it is tracked with this roadmap item: https://github.com/oracle/graal/issues/7476 ETA for the fix is GraalVM for JDK 23. We...
Thank you for a great reproducer! To make this work you need to add the flag `-H:AdditionalSecurityProviders=sun.security.jgss.SunProvider` the image build. We will work to provide a better user experience around...