Cross Platform C?

Unfortunately, the executable file formats used by Linux, Windows, and OSX are profoundly different in detail. There is no way to produce a single binary that works on all three.

It is possible to generate Windows and OSX executables using cross compilers from Linux (or vice versa in any other combination you like) but setting up the build environment is probably more trouble than it's worth. See http://www.kegel.com/crosstool/ if you really want to try that.


An executable has a specific format (e.g. ELF) and architecture (e.g. x86). Thus, you do have to compile multiple times. However, it is possible to cross-compile to e.g. Windows 7 x86 and Mac OS X x86 from Ubuntu. The procedures for each are different, as you would expect.

For Windows, you will want mingw32. See Compile Windows C console applications in Linux .

For OS X, see How to compile Intel Mac binaries on Linux? , which links to a tutorial.

You can search to find more information on each.