Reputation: 13
I have to use cygwin on Windows but altough (like many users complain) the boot is fast, the execution of commands is very, very, very slow. When run on Linux partition it takes at least one tenth of the time. Is there some way to make it work faster? I followed the steps found here (second answer) but it didn't work.
Upvotes: 0
Views: 343
Reputation: 8496
In Cygwin what is slow is the execution of the fork
call. As Microsoft systems do not provide the tools to easily mimic a POSIX fork, Cygwin DLL implements a lot of trick to execute a fork and that makes the full process slow.
Running a single program that does not fork is as fast as a normal Windows program.
Upvotes: 1