Developing for Windows on Linux

Build and test both the Linux and Microsoft Windows versions of your project without rebooting. With the free tools MinGW and Wine, you might even call Win32 a cross-platform API.
______________________

Joey Bernard has a background in both physics and computer science. This serves him well in his day job as a computational research consultant at the University of New Brunswick. He also teaches computational physics and parallel programming.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

More recent howto

Mitch Thomson's picture

The rather new MinGW-w64 project allows for creation of native 32- and 64-bit executables.
See compile Windows binaries under Linux for a quick howto.

Door number one, Door number two... Door number 36...

Confused's picture

I've used MinGW and MSYS before <microsoft bashing> my store-bought copy of vista suddenly decided it wasn't a valid licensed copy (which, to be fair, was resolved quickly and with lukewarm courtesy by tech support, and my copy did decide it was licensed after all, and I did not give it a fair chance to screw up again), and I decided it was a good time to wash my hands of the OS forever and stopped putzing around with cygwin in order to do my job without going into debt </microsoft bashing>

That said, though, the number of programs to choose from on the MinGW website is dizzying. Which program, specifically, did you grab and compile on your machine? Did you grab one of the .exe files and install it through wine, or is there a source distribution that I can build using the cozy make, su, make install procedure without invoking wine?

Just trying to navigate my way through a maze of identical-looking binaries, and I'm hoping that asking someone who actually got something working can shed a little bit of light on things for me.

Re: Developing for Windows on Linux

Anonymous's picture

(Replied to the wrong message earlier)

After reading this article, I immediately tried to apply it by compiling a couple of simple programs. My goal is to build Windows binaries and I want to include the Linux machines in the build process as well (using distcc). I built a cross compiler from the sources and everything seemed to build successfully. (The information for this came from this link: http://ranjitmathew.tripod.com/phartz/gcj/bldgcj.html

As a first test, I tried to compile a simple "Hello" file (hello.c) using the newly-created mingw32-gcc executable:

#include
int main(void) {
printf("Hello
");
return 0;
}

This worked and I was able to link hello.o on a Windows computer. Next, I tried to compile the C++ version (hello.cpp):

#include
using namespace std;
int main(void) {
cout
But this gave many errors. I knew it was that the include files were not being found, so I manually added them to the command line. I simply included all of the paths that the Linux g++ was using. (I discovered those paths by using the -v switch when compiling.) I even tried different variations with the include files that came with the mingw32 sources. I've been able to remove most of the errors, but a few still remain. The first one is this:

/usr/include/g++/i486-suse-linux/bits/c++locale.h:59: error: syntax error

which is complaining about this typedef:

typedef __locale_t __c_locale;

apparently, __locale_t is not defined anywhere (as far as I could tell.) Incidently, the same .h file under Windows looks like this:

typedef int* __c_locale;

I'm not an expert with Linux or g++, but I'm guessing there's some configuration issues as to why the new mingw32-g++ can't find the right header files. Even moving the mingw32-* binaries into /usr/bin doesn't help. Am I missing some header files or something else?

--Dig

Re: Developing for Windows on Linux

Anonymous's picture

Well, I missed that the angle brackets ( C++ insertion operator) confused the HTML reader (even after preview...). This is the HTML-friendly C++ code:

#include [iostream]
using namespace std;
int main(void) {
cout [[ "Hello" [[ endl;
return 0;
}

Replace [ and ] with less-than and greater-than.

--Dig

Re: Developing for Windows on Linux

Anonymous's picture

The first part of the section Win32 programming is simply dead wrong (well, almost). No proofreading?

Quote1: "All processes are considered threads by the operating system."

- No, processes are not considered threads. A process is a set of resources (private virtual address space, file handles, etc, etc). Each process has at least one thread though - the main thread of execution.

Quote2: "This makes the process context slightly lighter than the traditional heavyweight process model used in UNIX-like operating systems."

- The process context is not any lighter than UNIX - at least not because of the non-existing "everything-is-a-thread model".

Quote3: "With the correct permissions and the correct address, one program could twiddle another program's bits."

- No. Nope. Simply not possible without writing a kernel-mode driver. Unless one of the program exposed its data through named memory-mapped files (similar to mmap) with incorrect permissions set.

Articles like this only help to spread the many misconceptions on the NT family of operating systems. I seriously hope you haven't written any commercial applications for Windows ;-)

Whenever you have time, buy and read the latest edition of "Inside Windows NT". You won't regret it.

// Dev Anonymous

Re: Developing for Windows on Linux

joeybernard's picture

I do stand corrected on these issues. It was a combination of a lame attempt at humour/Microsoft bashing, combined with my working with mythology rather than going to sources and checking what I assumed was "common knowledge". While I did not have the money or inclination to get the book anonymous suggested, I did check out the great information on the sysinternals site (http://www.sysinternals.com). I claim temporary stupidity, simply because I never had to deal with systems level programming in Windows. Please accept my apologies.

Re: Developing for Windows on Linux

Anonymous's picture

After reading this article, I immediately tried to apply it by compiling a couple of simple programs. My goal is to build Windows binaries and I want to include the Linux machines in the build process as well (using distcc). I built a cross compiler from the sources and everything seemed to build successfully. (The information for this came from this link: http://ranjitmathew.tripod.com/phartz/gcj/bldgcj.htm)

As a first test, I tried to compile a simple "Hello" file (hello.c) using the newly-created mingw32-gcc executable:

#include
int main(void) {
printf("Hello
");
return 0;
}

This worked and I was able to link hello.o on a Windows computer. Next, I tried to compile the C++ version (hello.cpp):

#include
using namespace std;
int main(void) {
cout
But this gave many errors. I knew it was that the include files were not being found, so I manually added them to the command line. I simply included all of the paths that the Linux g++ was using. (I discovered those paths by using the -v switch when compiling.) I even tried different variations with the include files that came with the mingw32 sources. I've been able to remove most of the errors, but a few still remain. The first one is this:

/usr/include/g++/i486-suse-linux/bits/c++locale.h:59: error: syntax error

which is complaining about this typedef:

typedef __locale_t __c_locale;

apparently, __locale_t is not defined anywhere (as far as I could tell.) Incidently, the same .h file under Windows looks like this:

typedef int* __c_locale;

I'm not an expert with Linux or g++, but I'm guessing there's some configuration issues as to why the new mingw32-g++ can't find the right header files. Even moving the mingw32-* binaries into /usr/bin doesn't help. Am I missing some header files or something else?

-- Dig

Re: Developing for Windows on Linux (Ignore previous post)

Anonymous's picture

Ignore the above, I replied to the wrong message. I've reposted it. D'oh!

--Dig

Webcast
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers

Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6

Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.

Learn more about catching the bad guy in this free white paper.

Learn More

Sponsored by DLT Solutions