vote up 2 vote down star

I want to setup a minimal set of cygwin applications (ls, diff, path, find, grep) so that they run on a machine without the full cygwin install.

I am assuming all I need are the *.exe files and *.dll that are relevant. So far, this is what I have. It works so far, but I was wondering if there are any issues down the road that I might experience.

flag

73% accept rate
It might help to answer this question if you explained what's wrong with just having users use the standard Cygwin install. They don't need to install everything, so it won't be that painful, I think. – Jon Ericson Jan 27 at 22:42

3 Answers

vote up 1 vote down check

Not really, but you might want to look at UnxUtils, which has some advantages over cygwin for the sort of application you're describing:

  1. It does not depend on an external DLL.

  2. The executables use msvcrt.dll, rather than cygwin.dll so they play nicely with native windows paths. There is no disconnect between the /cygdrive path and the native paths used by the rest of the system.

  3. Because of (2) it integrates much more nicely into command or bat files if you have occasion to have to do this.

UnxUtils is quite good for deploying functionality like sed to windows machines because you can just drop sed.exe into an application directory and not have to worry about registering any DLL's or other installation complexities. CMD.exe will pipe and redirect well enough to use these in batch files, and the utilities do not mind \r\n line terminators.

link|flag
Yea, I still like unxutils. That is what I Am using. I also noticed that the website is older than the sourceforge project. They did a release 2 years ago. I thought the project was dead. – Berlin Brown Feb 3 at 8:33
It's been around for quite a few years now; you could ask the maintainer if it's still being actively looked after. – ConcernedOfTunbridgeWells Feb 3 at 15:16
vote up 0 vote down

One issue I can see is licensing. You may need to research under what conditions you are allowed to redistribute binaries. (It may be a simple as including a statement in a README file about where to obtain the source.)

Another issue is Cygwin updates. When new binaries are released, how will you keep end users up to date?

A third potential problem would be configuration files that an application would need. No doubt this would be easy enough to figure out in testing, however.

Have you considered MinGW? It would seem to fit your purposes better than Cygwin.

link|flag
vote up 1 vote down

There is also the GnuWin32 project. I use that and CygWin, so sometimes I have a hard-time telling what kind of environment I'm working in..... not that that's a bad thing!

link|flag
I use GnuWin32. I like it as you get all the Unix tools without it trying to turn your PC into a *nix workstation. – Dave Webb Jan 30 at 11:55

Your Answer

Get an OpenID
or

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