c - NMAKE : fatal error U1077: 'cc' : return code '0x1' -
i use windows 10 , trying compile downloaded project using make file. enter:
`nmake -f makefile'
in appropriate directory , error:
'cc -03 -o lsd lsd_cmd.c -lm 'cc' not recognized internal or external comand, operable program or batch file. nmake : fatal error u1077: 'cc' : return code 'ox1' stop.
i don't know i'm doing wrong, think maybe because cant find c compiler?
thanks :)
the error message says problem is.
'cc' not recognized internal or external comand, operable program or batch file.
cc compiler, , windows cannot find it. either
a) don't have c compiler
b) cc not point c compiler
if (a), download c compiler. mingw or cygwin should work. if (b), can try changing makefile 'cc' whatever c compiler's name (gcc, example), adding c compiler system path, and/or creating symlink point 'cc' c compiler.
Comments
Post a Comment