Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cygwin on windows does not recognize make

Tags:

unix

cygwin

I am trying to use the make command in cygwin on windows but it says command not found .Please help on how to make it recognize the make command

like image 933
Programmer Avatar asked Feb 03 '12 15:02

Programmer


People also ask

Where is make in Cygwin?

You can install it from the Cygwin setup.exe install program. When you get to the "Select Packages" screen, expand the "Devel" section, find the make package, and select the version you want by clicking the weird circle/arrow thing on that line until your desired version is shown.

Is make part of Cygwin?

Then you'll be able to run make from the Cygwin bash command line. It is in the package make: The GNU version of the 'make' utility . It seems you also need to add the Cygwin bin folder to your Windows path.

How do I use Cygwin on Windows?

Go to http://cygwin.com and click on "Install Cygwin" in the left column. This will allow you to download a setup.exe file and choose "Install from Internet." Click "Next." Choose your settings. For most users, it is fine to leave the default installation directory, which is "c:\cygwin\ and the other default settings.


1 Answers

In Cygwin, make is not installed by default. You need to launch Setup.Exe, select make in the Devel section, and let Setup download and install it.

Also, depending upon what you are building, you may need to install additional libraries for your build to work.

like image 77
AlG Avatar answered Oct 04 '22 11:10

AlG