Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have at least one cygwin shell open all the time, when on windows machine. Any msys users out there? Why would anyone use msys over cygwin (except for building win executables)?

share|improve this question

6 Answers

up vote 28 down vote accepted

MSYS's stated design goal is just to enable the whole gcc(mingw)/autotools build system on windows, it's never going to be a full "posix-y subsystem" like cygwin (including a package manager!).

The main difference between mingw and cygwin is that mingw builds win32 binaries that are free from any extra dependencies.

I've gotten over cygwin recently. There's a lot of impedance mismatch between cygwin and the native platform (LF vs CR-LF for example). Look for native versions of the unix utilities (including shells) like the UnxUtils project.

share|improve this answer
1  
cygwin includes mingw compilers; see -mno-cygwin flag – Barry Kelly Dec 13 '10 at 16:01
Your comment pointed me back at this old post. I wonder if the cygwin compilers didn't have that option back then, or I just didn't know about it. My latest development machine has no cygwin on it and I don't miss it at all. GNUWin32 provides what you need from the unixy tools. – Adam Mitz Dec 13 '10 at 19:28
@BarryKelly: The gcc 4 in my Cygwin claims -mno-cygwin is deprecated, and I had to use gcc-3 to get that feature. I just installed MinGW/MSYS so I could distribute executables of my command-line tools without extra DLLs. Well worth the effort, in my opinion. – tomlogic Dec 1 '11 at 17:39
@tomlogic With gcc-4, MinGW and MinGW-w64 cross-compilers are available as separate packages in Cygwin setup. – ak2 Oct 8 '12 at 5:01

Cygwin offers much more complete UNIX compatibility; i.e. it is more likely to easily build source from that tarball you downloaded that's never been compiled on Windows before. The package manager is pretty convenient. As the other users mentioned, programs built with Cygwin depend on the GPL-licensed Cygwin runtime DLL.

MSYS/MinGW is a thinner and less-complete compatibility layer, but it offers a significant performance advantage over Cygwin and carries no runtime dependencies. Since we got our project to build under MSYS (which took a little work), we favor this environment.

share|improve this answer

No answer, but I don't think I could live without cygwin. Great stuff.

From what I can tell, MSYS is built on MinGW, which has a much smaller DLL. But for day-to-day use, I don't think there's an advantage to it. (However, I've never played with it much.)

share|improve this answer

I prefer msys, for my day to day tasks. I'm forced to use Windows 7, when at work.

I prefer msys, It feels somewhat faster to me. The way it handles the Filesystem is cleaner, IMO.

/$DRIVE/...

GnuWin32, is a great idea (really the best idea), but they don't provide bash. I really don't think that makes sense, for me the shell IS the GNU experience. I even tried using GnuWin32 and then doing msys for the shell, does not work well as you would think. You would still be stuck with msys for coreutils, and at that point its a wash.

At home I use Linux, it is really the best option.

share|improve this answer

MSYS also handles DOS paths differently.

share|improve this answer

If licensing is an issue, CYGWIN is distributed under the GPL which may places some restrictions on commercial software linked against the CYGWIN runtime. MSYS is more permissive in this respect and may be more appropriate for commercial software.

As far as the environments are concerned, however, I find CYGWIN to be a far more polished product.

share|improve this answer
2  
That's wrong, because MSYS is a fork of an old Cygwin version (1.3 to be precise), so it's under GPL too. – ak2 Apr 14 '11 at 19:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.