Error 127 to compile 'Makefile'

I am very new to Linux and I use UBUNTU to run the code! when I use the make command to compile my makefile, I get this error:

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

can someone tell me what this error is and why this is happening?

Thanks in advance!

+7
compilation makefile
source share
1 answer

Whenever you read the output of an assembly, you want to go up and find the FIRST error message. This is almost always important. Once something fails, other errors can be cascading problems from the first. In this case, this message simply tells you that it tried to compile mod_param.c, and that did not work. You will need to look at the messages BEFORE this to understand why the compilation failed.

+10
source share

All Articles