I want to make my C++ project cross platform, and I'm considering using Cygwin/MinGW. But what is the difference between them ?
Another question is whether I will be able to run the binary on a system without Cygwin/MinGW ?
|
|
|
Cygwin is an attempt to create a complete UNIX/POSIX environment on Windows. To do this it uses various DLLs. While these DLLs are covered by GPLv3+, this does not cause the resulting program to be covered by GPLv3+ (by exception here). MinGW is a C/C++ compiler suite which allows you to create Windows executables without dependancy on such DLLs - you only need the normal MSVC runtimes, which are part of any normal Microsoft Windows installation. You can also get a small UNIX/POSIX like environment, compiled with MinGW called MSYS. It doesn't have anywhere near all the features of Cygwin, but is ideal for programmers wanting to use MinGW. |
|||||||||||||||||||||
|
|
As a simplification, it's like this:
About Cygwin The purpose of Cygwin is to make porting *nix-based applications to Windows much easier, by emulating many of the small details that Unix-based operating systems provide, and are documented by the POSIX standards. If your application assumes that it can use Unix feature such as pipes, Unix-style file and directory access, and so forth, then you can compile it in Cygwin and Cygwin itself will act as a compatibility layer around your application, so that many of these Unix-specific paradigms can continue to be used with little or no modification to your application. If you want to compile something for Cygwin and distribute that resulting application, you must also distribute the Cygwin run-time environment (provided by About MingW MingW is a Windows port of the GNU compiler tools, such as GCC, Make, Bash, and so on. It does not attempt to emulate or provide comprehensive compatibility with Unix, but instead it provides the minimum necessary environment to use GCC (the GNU compiler) and a small number of other tools on Windows. It does not have a Unix emulation layer like Cygwin, but as a result your application needs to specifically be programmed to be able to run in Windows, which may mean significant alteration if it was created to rely on being run in a standard Unix environment and uses Unix-specific features such as those mentioned earlier. By default, code compiled in MingW's GCC will compile to a native Windows X86 target, including .exe and .dll files, though you could also cross-compile with the right settings. MingW is an open-source alternative to Microsoft Visual C++ compiler and its associated linking/make tools. Considerably sophisticated cross-platform frameworks exist which make the task of porting applications to various operating systems easily - for example the Qt framework is a popular framework for cross-platform applications. If you use such a framework from the start, you can not only reduce your headaches when it comes time to port to another platform but you can use the same graphical widgets - windows, menus and controls - across all platforms if you're writing a GUI app. |
|||||||
|
|
To add to the other answers, Cygwin comes with the MingW libaries and headers and you can compile without linking to the cygwin1.dll by using -mno-cygwin flag with gcc. I greatly prefer this to using plain MingW and MSYS. |
|||
|
Wikipedia does a comparison here. From Cygwin's website:
From Mingw's website:
|
||||
|
|
|
Cygwin uses a DLL, cygwin.dll, (or maybe a set of DLLs) to provide a POSIX-like runtime on Windows. MinGW compiles to a native Win32 application. If you build something with Cygwin, any system you install it to will also need the Cygwin DLL(s). A MinGW application does not need any special runtime. |
|||
|
|
|
Read these answered questions to understand the difference between Cygwin and MinGW. Question #1: I want to create an application that I write source code once, compile it once and run it in any platforms (e.g. Windows, Linux and Mac OS X…).
Question #2: I want to create an application that I write source code once but there is no problem that I compile the source code for any platforms separately (e.g. Windows, Linux and Mac OS X …).
Question #3: In answer of question #2, it is difficult using different compiler for each platform, is there any cross platform compiler?
Question #4: C or C++ standard header files do not provide any advanced programming features like multi-threading. What can I do?
Thus: To use advantage of GCC cross platform compiler in Windows, use MinGW.To use advantage of POSIX standard advanced programming features and tools in Windows, use Cygwin. |
|||||||||||
|
|
Don't overlook AT&T's U/Win software, which is designed to help you compile Unix applications on windows. Like Cygwin they have to run against a library; in their case |
|||
|
|
Note that utility behaviour can genuinely vary between the two. For example, Cygwin tar can fork - because fork() is supported in the DLL - where the mingw version cannot. This is a problem when trying to compile mysql from source. |
|||
|
|
|
Cygwin emulates entire POSIX environment, while MinGW is minimal tool set for compilation only (compiles native Win application.) So if you want to make your project cross-platform the choice between the two is obvious, MinGW. Although you might consider using VS on Windows, GCC on Linux/Unices. Most open source projects do that (e.g. Firefox or Python). |
||||
|
|
|
Cygwin is is a Unix-like environment and command-line interface for Microsoft Windows. Mingw is a native software port of the GNU Compiler Collection (GCC) to Microsoft Windows, along with a set of freely distributable import libraries and header files for the Windows API. MinGW allows developers to create native Microsoft Windows applications. You can run binaries generated with |
|||
|
|
|
Looks like MSYS is an old cygwin fork. I prefer mingw binaries since they seem to be easier to use (with no installation), but if you want a full environment, not sure what the advantage of MSYS opposed to cygwin bash would be. |
|||
|
|