vote up 8 vote down star
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.

flag

73% accept rate

3 Answers

vote up 6 vote down check

The basics are not too difficult:

sudo apt-get install mingw32    
cat > main.c <<EOF
int main()
{
  printf("Hello, World!");
}
EOF
i586-mingw32msvc-cc main.c -o hello

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

CC=i586-mingw32msvc-cc ./configure && make

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.

link|flag
One thing to note with this is that some libraries don't like to cross-compile. If your only choices are an .exe installer and source, you may want to install the library under wine and then copy the libraries and headers into your mingw search path. I never could get Boost to cross-compile – Branan Oct 8 '08 at 18:26
Would you mind guide me to how can I test such compiled program with Wine? – NawaMan Oct 11 at 6:49
wine hello.exe should do it! – rq Oct 11 at 14:12
vote up 2 vote down

The Cygwin project does exactly this.

link|flag
Erm... no it doesn't. That is a Linux-like environment that runs on Windows. – rq Oct 8 '08 at 12:22
Which should be able to compile the same source as Linux. But, as you say, that's not cross-compiling. – paxdiablo Oct 8 '08 at 13:01
vote up 1 vote down

It depends on what you mean (I couldn't really say).

  1. If you mean that you want to use an existing Linux application on Windows, then you could try compiling it using cygwin on Windows. This however does not give you a Windows executable free from all dependencies towards cygwin (your executable still depends on the cygwin.dll) - and it still may need some porting before it will work. See http://www.cygwin.com

  2. If you mean that you want to be able to perform the actual compilation of a Windows application on Linux and produce a .exe file that is executable on Windows - thus using your Linux box for development and/or compilation then you should look into MinGW for Linux which is a tool for crosscompiling for Windows on Linux. See http://www.mingw.org/wiki/LinuxCrossMinGW

Best regards!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.