Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error 127 to compile 'Makefile'

I'm very new to Linux and I'm using UBUNTU to run a code! when I use 'make' command to compile my 'Makefile' I get this error:

make:*** [mod_param.o] Error 127 

could anyone tell me what is this error and why this happen?

Thanks in advance!

like image 443
user2593473 Avatar asked Jul 17 '13 23:07

user2593473


1 Answers

Whenever reading the output of a build, you want to go up and find the FIRST error message. That's almost always the important one. Once something fails, the rest of the errors might be cascading problems from the first one. In this case, that message is just make telling you that it tried to compile mod_param.c and it didn't work. You'll have to look at the messages BEFORE this one to see why the compile failed.

like image 73
MadScientist Avatar answered Oct 21 '22 17:10

MadScientist