Looks like it is trying to use a C compiler called cc , which apparently you don't have. On Linux systems cc is often a link to gcc, the standard GNU/Linux C compiler. Make sure that you have gcc installed on your system.
I believe that make normally tries to use gcc directly, but in the absence of gcc, it will default to cc, which on unix-like systems is commonly a link to the system's compiler-of-choice.
|