Cygwin Make bash command not found

C++MakefileCygwinCommand

C++ Problem Overview


I installed cygwin with all the packages on windows 7 64 bit. For some reason the make command is giving me an error: bash make: command not found. I checked and in my bin folder, there is no make.exe. Can anyone help me on this? I really need make to work in CYGWIN. I dont wanna have to go to windows xp.

C++ Solutions


Solution 1 - C++

While instaling (updating) check 'Devel' to 'Install', it will install a lot of MB but helps. I don't have time to check which exacly I (we) need.

CYGWIN INSTALL STEP

Solution 2 - C++

You probably have not installed make. Restart the cygwin installer, search for make, select it and it should be installed. By default the cygwin installer does not install everything for what I remember.

Solution 3 - C++

follow some steps below:

  1. open cygwin setup again

  2. choose catagory on view tab

  3. fill "make" in search tab

  4. expand devel

  5. find "make: a GNU version of the 'make' ultility", click to install

  6. Done!

Solution 4 - C++

Follow these steps:

  1. Go to the installer again
  2. Do the initial setup.
  3. Under library - go to devel.
  4. under devel scroll and find make.
  5. install all of library with name make.
  6. click next, will take some time to install.
  7. this will solve the problem.

Solution 5 - C++

when selecting packages at installation or update search for 'make' in searchbox and select the boxes showing 'make' and also 'gcc' mostly found in devel package.

Solution 6 - C++

if you have apt-cyg , then you are done with one command

apt-cyg install make

if you don't have apt-cyg , then install it as it will simplify your life.

Solution 7 - C++

I had the same problem and it was due to several installations of cygwin.

Check the link (the icon) that you click on to start the terminal. In case it does not point to the directory of your updated cygwin installation, you have the wrong installation of cygwin. When updating, double check the location of cygwin, and start exactly this instance of cygwin.

Solution 8 - C++

I faced the same problem. Follow these steps:

  1. Goto the installer once again.
  2. Do the initial setup.
  3. Select all the libraries by clicking and selecting install (the one already installed will show reinstall, so don't install them).
  4. Click next.
  5. The installation will take some time.

Solution 9 - C++

I faced the same problem too. Look up to the left side, and select (full). (Make), (gcc) and many others will appear. You will be able to chose the search bar to find them easily.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser593301View Question on Stackoverflow
Solution 1 - C++MateuszView Answer on Stackoverflow
Solution 2 - C++neuroView Answer on Stackoverflow
Solution 3 - C++VietHuongView Answer on Stackoverflow
Solution 4 - C++Suvadeep panthyView Answer on Stackoverflow
Solution 5 - C++vicky sableView Answer on Stackoverflow
Solution 6 - C++صلي علي محمد Atef FaroukView Answer on Stackoverflow
Solution 7 - C++langlauf.ioView Answer on Stackoverflow
Solution 8 - C++Divyanshu SrivastavaView Answer on Stackoverflow
Solution 9 - C++Achie1View Answer on Stackoverflow