Reputation: 3566
Few months back, everything was running just fine.
Now, running gcc
gives me an error on cygwin
.
I have :
1) checked and set the PATH
to my gcc
2) checked if gcc
was installed and exist in my bin folder
Any other commands are running just fine! Where can the problem be?
Upvotes: 1
Views: 7595
Reputation: 1
gcc wants to load a dll, which he can't find.
1) try to start gcc with full path (e.g. /usr/bin/gcc) . What happens?
2) If the error is the same, you could use f.e. the Dependency Walker tool (http://dependencywalker.com) to find what can't be found.
Upvotes: 1