I make this program in C++ using Code::Blocks on Ubuntu. I need to turn it into a Windows executable binary (.exe file), but I don't know how to do this. Is it possible?
views:
487answers:
5
+1
A:
This is a fairly unusual question. What you're asking is that you want to develop on Ubuntu, but the target platform is Windows?
My guess is that you have an assignment to turn in. My belief is that you should go to a lab and compile it and make sure it's working.
However, doing some research, you should try mingw at http://www.mingw.org/
Daniel
2010-05-06 15:29:25
+1
A:
You could read here on how to compile wxWidget applications on Linux for Windows using Code::Blocks.
Kirill V. Lyadvinsky
2010-05-06 15:41:26
+3
A:
Both the MinGW32 distribution of GCC and Wine should be available for your distribution.
MinGW has instructions and winegcc wraps a similar compiler that comes with the Wine distribution.
I've used both to compile both applications and libraries for Windows.
greyfade
2010-05-06 16:37:30