-
Notifications
You must be signed in to change notification settings - Fork 63
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
winrun4j fails to load jvm.dll with openjdk11 #86
Comments
Similar issue here.. Getting following error in Win10 with OpenJRE11:
Got Win JRE from here: https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/tag/jdk-11.0.1%2B13 |
Damn, realized that I use 64bit and have to use WinRun4J64.exe ... issue solved for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have been working on packaging openjdk11 with my app. I modified my .ini file to specify the vm.location as the baked in jre. On some Windows 7 machines it works fine and on others it fails. The error it gives is "ERROR: Could not load library: path\to\jvm.dll". I added a GetLastError() call to the code and it is giving error ERROR_PROC_NOT_FOUND (127). The interwebs indicate this is likely a problem loading a dependent dll and not necessarily the jvm dll. Likely on the machines it works on the dll loader is able to find the mysterious dependency and on others not. I cannot put more effort into it right now but I am opening this in case someone else has the same issue or already knows the issue and how to solve it.
The text was updated successfully, but these errors were encountered: