Home > Back-end >  Program cannot be executed because Cygcurl-4.dll was not found
Program cannot be executed because Cygcurl-4.dll was not found

Time:09-03

What I did:

  • I downloaded the code and applications from a c course for projects that I was doing online.
  • I am using windows 10, everything like mingw, cygwin etc. are installed and path is also setted up in the system
  • Cygwin is installed and setted up with default packages.

Issue: When I try to run the .exe application file it give error the Cygcurl-4.dll was not found as in below screenshot screenshot 1 In Cygwin setup, I really did not found any package with this name 'Cygcurl-4.dll' screenshot 2

I have also tried to find this on google but could not find how to fix this in windows 10.

CodePudding user response:

The lib is here

https://cygwin.com/packages/summary/libcurl4.html

libcurl4 shared object is usr/bin/cygcurl-4.dll for Windows (you can see in package files)

Be careful to install the x86_64 version if your system is 64 bits.

  • Related