Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Adds new flags to fix the native image build
The native image build got broken after upgrading the graalvm image. We had to add a new flag to initialize classes and implicitly all of their superclasses during image building (--initialize-at-build-time). The --no-fallback flag is to avoid falling back to JDK if the build is not successfull and the -report-unsupported-elements-at-runtime flag is to report usage of unsupported methods and fields at run time when they are accessed the first time, instead of as an error during image building.
- Loading branch information