Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Make in Cygwin

I am trying to build a Linux project in windows 7 environment usign cygwin. However I am continuously getting below error while configuring make for cygwin installation.

-bash: make: command not found

After searching on inernet the only solution is re running of setup and installed make package. I have installed automake1.15 but it is in noarch folder and there is no binary make.exe in bin folder.

like image 861
aneela Avatar asked Dec 14 '22 13:12

aneela


1 Answers

run command setup-x86_64.exe -q --packages=make(because make is not installed) in command prompt where the setup-x86_64.exe file is available

like image 181
PJain Avatar answered Dec 16 '22 07:12

PJain