我想让我的c++项目跨平台,我正在考虑使用Cygwin/MinGW。 但是它们之间有什么区别呢?
另一个问题是,我是否能够在没有Cygwin/MinGW的系统上运行二进制文件?
我想让我的c++项目跨平台,我正在考虑使用Cygwin/MinGW。 但是它们之间有什么区别呢?
另一个问题是,我是否能够在没有Cygwin/MinGW的系统上运行二进制文件?
当前回答
简单来说,它是这样的:
在Cygwin中编译一些东西,你就是在为Cygwin编译它。 在MinGW中编译一些东西,你就是在为Windows编译它。
Cygwin是什么?
Cygwin是一个兼容层,通过模拟基于unix的操作系统提供的许多基本接口,如管道、unix风格的文件和目录访问等,可以很容易地将简单的基于unix的应用程序移植到Windows上,这是POSIX标准所记录的。Cygwin还与GNU编译器集合的一个端口和一些其他工具捆绑在Cygwin环境中。
如果您有使用POSIX接口的现有源代码,那么只需做很少甚至不做任何更改,就可以将其编译为与Cygwin一起使用,这大大简化了将简单的基于IO的Unix代码移植到Windows上的过程。
Cygwin的缺点
使用Cygwin进行编译涉及到将程序与Cygwin运行时环境链接,该环境通常作为动态链接库cygwin1.dll随程序一起分发。这个库是开放源码的,并且要求使用它的软件共享兼容的开放源码许可证,即使您单独发布dll,因为头文件和接口都包含在内。因此,这对如何授权代码施加了一些限制。
MinGW是什么?
MinGW是一个针对本地Windows的GNU编译器工具的发行版,包括GNU编译器集合、GNU Binutils和GNU调试器。还包括头文件和库,允许开发本机Windows应用程序。因此,这将作为微软Visual c++套件的开源替代品。
可以使用MinGW编译一些原本打算用Microsoft Visual c++编译的东西,只做了相对较小的修改。
默认情况下,在MinGW的GCC中编译的代码将编译到本机Windows目标,包括.exe和.dll文件,尽管您也可以通过正确的设置进行交叉编译,因为您基本上使用的是GNU编译器工具套件。
尽管MingW包含一些头文件和接口代码,允许您的代码与Windows API交互,但与常规标准库一样,这不会对您创建的软件施加许可限制。
MinGW的缺点
使用MinGW为Windows编译的软件必须使用Windows自己的API进行文件和IO访问。如果您正在将Unix/Linux应用程序移植到Windows,这可能意味着代码的重大更改,因为POSIX类型API不能再使用。
其他的考虑
For any non-trivial software application, such as one that uses a graphical interface, multimedia or accesses devices on the system, you leave the boundary of what Cygwin can do for you and further work will be needed to make your code cross-platform. But, this task can be simplified by using cross-platform toolkits or frameworks that allow coding once and having your code compile successfully for any platform. 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, and have them appear native to the user.
例如,开源Qt框架是一个流行的、全面的跨平台开发框架,允许构建跨操作系统(包括windows)的图形化应用程序。还有其他类似的框架。除了大型框架之外,还有数以千计的更专业的软件库,它们支持多个平台,使您不必担心为不同的平台编写不同的代码。
当您从一开始就开发跨平台软件时,通常没有任何理由使用Cygwin。当在Windows上编译时,你的目标通常是让你的代码可以用MingW或Microsoft Visual C/ c++编译,或者两者都可以。在Linux/*nix上编译时,通常直接使用GNU编译器和工具进行编译。
其他回答
Cygwin是Microsoft Windows的类unix环境和命令行界面。
Mingw是GNU Compiler Collection (GCC)到Microsoft Windows的原生软件移植,以及一组用于Windows API的可自由分发的导入库和头文件。MinGW允许开发人员创建本地Microsoft Windows应用程序。
您可以在没有cygwin环境的情况下运行用mingw生成的二进制文件,前提是提供了所有必要的库(dll)。
请注意,两者之间的效用行为确实不同。
例如,Cygwin tar可以fork -,因为DLL中支持fork(),而mingw版本则不支持。当试图从源代码编译mysql时,这是一个问题。
Cygwin试图在Windows上创建一个完整的UNIX/POSIX环境。为此,它使用了各种dll。虽然这些dll由GPLv3+覆盖,但它们的许可包含一个异常,该异常不强制派生作品由GPLv3+覆盖。MinGW是一个C/ c++编译器套件,它允许你创建Windows可执行文件而不依赖于这些dll -你只需要正常的MSVC运行时,这是任何正常的微软Windows安装的一部分。
您还可以获得一个类似UNIX/POSIX的小型环境,使用MinGW编译,称为MSYS。它不具备Cygwin的所有功能,但对于想要使用MinGW的程序员来说是理想的。
为了补充其他答案,Cygwin附带了MinGW库和头文件,你可以在不链接到cygwin1.dll的情况下使用-mno-cygwin标志与gcc进行编译。比起使用普通的MinGW和MSYS,我更喜欢这个。
维基百科说:
MinGW forked from version 1.3.3 of Cygwin. Although both Cygwin and MinGW can be used to port UNIX software to Windows, they have different approaches: Cygwin aims to provide a complete POSIX layer that provides emulations of several system calls and libraries that exist on Linux, UNIX, and the BSD variants. The POSIX layer runs on top of Windows, sacrificing performance where necessary for compatibility. Accordingly, this approach requires Windows programs written with Cygwin to run on top of a copylefted compatibility library that must be distributed with the program, along with the program's source code. MinGW aims to provide native functionality and performance via direct Windows API calls. Unlike Cygwin, MinGW does not require a compatibility layer DLL and thus programs do not need to be distributed with source code. Because MinGW is dependent upon Windows API calls, it cannot provide a full POSIX API; it is unable to compile some UNIX applications that can be compiled with Cygwin. Specifically, this applies to applications that require POSIX functionality like fork(), mmap() or ioctl() and those that expect to be run in a POSIX environment. Applications written using a cross-platform library that has itself been ported to MinGW, such as SDL, wxWidgets, Qt, or GTK+, will usually compile as easily in MinGW as they would in Cygwin. The combination of MinGW and MSYS provides a small, self-contained environment that can be loaded onto removable media without leaving entries in the registry or files on the computer. Cygwin Portable provides a similar feature. By providing more functionality, Cygwin becomes more complicated to install and maintain. It is also possible to cross-compile Windows applications with MinGW-GCC under POSIX systems. This means that developers do not need a Windows installation with MSYS to compile software that will run on Windows without Cygwin.