Stop using --install-exit-handlers

This commit stop using the --install-exit-handlers deprecated option
which is enabled by default with GraalVM 25+.

Closes gh-35557
This commit is contained in:
Sébastien Deleuze
2025-10-14 10:44:21 +02:00
parent e901516732
commit 1f2948f78c
2 changed files with 1 additions and 3 deletions
@@ -138,7 +138,6 @@ public abstract class ContextAotProcessor extends AbstractAotProcessor<ClassName
args.add("-H:Class=" + applicationClassName);
args.add("--report-unsupported-elements-at-runtime");
args.add("--no-fallback");
args.add("--install-exit-handlers");
return args;
}