The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 09-07-2001
mib mib is offline
Registered User
 

Join Date: Jan 2001
Location: Calicut
Posts: 228
Probably you either don't have a C compiler installed or there is one installed, but it's not in your path.





Figure out where your C compiler is located using whereis or locate command. If you found one add its path to your existing PATH environment variable.

You can set the path using
setenv PATH $PATH:/path/to/cc
or
export PATH=$PATH:/path/to/cc


It depends on what shell your using.