Cygwin dies waiting for dll to load

4

1

When using cygwin I often get some error followed by a stack trace that looks like

123456789 [main] ssh 1234 fork: child 4321 - died waiting for dll loading, errno 11

I get this very often when using git-svn, and have also heard of people getting this error using apache httpd, xist, gvim. I haven't ever been able to track down the root cause of this.

Ben Doerr

Posted 2011-07-01T17:25:46.847

Reputation: 478

Answers

2

Curing the symptom of this problem took some googling.

  1. Shutdown cygserver (if running): net stop cygserver
  2. Close all cygwin processes
  3. Run the ash shell C:\path\to\cygwin\bin\ash.exe
  4. Run rebaseall $./rebaseall

This should get things working again.

This is based on http://www.garethhunt.com/2008/02/11/cygwin-died-waiting-for-dll-loading/

Ben Doerr

Posted 2011-07-01T17:25:46.847

Reputation: 478