Just that. I would like some information (links, reference, examples...) to guide me to do that.
I don't even know if it's possible.
My objective is to compile a program in Linux and get a .exe file that I can run under windows.
|
2
|
Just that. I would like some information (links, reference, examples...) to guide me to do that. I don't even know if it's possible. My objective is to compile a program in Linux and get a .exe file that I can run under windows.
|
||
|
|
|
|
The basics are not too difficult:
Replacing apt-get for yum, or whatever your Linux distro uses. That will generate a hello.exe for Windows. Once you get your head around that, you could use autotools, and set CC=i586-mingw32msvc-cc
Or use CMake and a toolchain file to manage the build. More difficult still is adding native cross libraries. Usually they are stored in /usr/cross/i586-mingw32msvc/{include,lib} and you would need to add those paths in separately in the configure step of the build process. |
||||||
|
|
|
The Cygwin project does exactly this. |
||
|
|
It depends on what you mean (I couldn't really say).
Best regards! |
||
|
|