I have a java application in ubuntu, java application uses a jar. This jar uses some native libraries(.dll). System.loadLibrary(“my_native_library”) is used in the jar to load required libraries. In linux it tries to load an .so file means here my_native_library.so, but I have my_native_library.dll. So I am not able to run this java application. How should I proceed? Answer If
Tag: wine
Linux layer on macOS [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question
How would a Python script running on Linux call a routine in a Python script running under Wine?
I have a Python (3) script running on Linux, referred to as the main script, which has to call a routine from a proprietary DLL. So far, I have solved this with Wine using the following construct: The script dll_call.py is executed by a Windows Python (3) interpreter installed under Wine. It dumps the return values into a file which