We have built our project into a .out file using cygwin. We have to call functions from that project using python script. For that we need .dll file.
Is there any way or command to convert a .out file into a .dll using cygwin?
Thanks in advance.
We have built our project into a .out file using cygwin. We have to call functions from that project using python script. For that we need .dll file.
Is there any way or command to convert a .out file into a .dll using cygwin?
Thanks in advance.
It sounds like you have an executable compiled with default arguments (often named things like a.out
). I'm not sure that you can convert this to a .dll without some difficulty.
Do you have access to the source code? In which case, you can follow this example, as given in 0x90's answer.