You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, jline extracts the DLLs using a name like "jline_<version>.dll" (on MS Windows).
When an application using jline is running on a 64bit JVM, and you try to start another app using a 32bit JVM, it can't overwrite the original library (because it is still locked by the 64bit JVM process) and then tries to load it into the 32bit JVM (and vice versa):
java.lang.UnsatisfiedLinkError: C:\Users\Grubert\AppData\Local\Temp\jline_0_11_1.dll: Can't load AMD 64-bit .dll on a IA
32-bit platform
The text was updated successfully, but these errors were encountered:
Currently, jline extracts the DLLs using a name like
"jline_<version>.dll"
(on MS Windows).When an application using jline is running on a 64bit JVM, and you try to start another app using a 32bit JVM, it can't overwrite the original library (because it is still locked by the 64bit JVM process) and then tries to load it into the 32bit JVM (and vice versa):
The text was updated successfully, but these errors were encountered: