user2593473
user2593473

Reputation: 71

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!

Upvotes: 7

Views: 39941

Answers (1)

MadScientist
MadScientist

Reputation: 100856

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.

Upvotes: 11

Related Questions