On Mon, 26 Sep 2022 18:15:17 GMT, Dmitry Samersoff <[email protected]>
wrote:
> If the user has set LD_LIBRARY_PATH to use a particular libjvm.so, options
> from the JDK_JAVA_OPTIONS environment variable are picked up twice.
>
> If an option cannot be accepted twice (e.g., -agentlib), the application
> fails to start.
>
> The same happens on operating systems that doesn't support $RPATH/$ORIGIN and
> always have to set LD_LIBRARY_PATH and re-exec the launcher.
>
> The fix adds one additional argument - orig_argv to JLI_Launch() and use it
> in on relaunch in execv() call.
>
> All relevant jtreg tests are passed.
```JNIEXPORT void JNICALL
JLI_InitArgProcessing(jboolean hasJavaArgs, jboolean disableArgFile) {
// No expansion for relaunch
if (argsCount != 1) {
relaunch = JNI_TRUE;
stopExpansion = JNI_TRUE;
argsCount = 1;
} else {
The code, that set relaunch variable (see above) doesn't really work.
-------------
PR: https://git.openjdk.org/jdk/pull/10430