Can anybody please tell what's "Error 127", while am compiling my source with a makefile?
For example (sorry about the whitespace; copied from comment)
Can anybody please tell what's "Error 127", while am compiling my source with a makefile?
For example (sorry about the whitespace; copied from comment)
Post the full error message. This error normally means a command (i.e. an executable) cannot be found.
The error you posted indicates that it is looking for the 'cl' executable but can't find it. You need to add the path to this executable to your PATH variable.
It means that make cannot find a particular program it needs to complete the make job.