Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compiler variable??

Status
Not open for further replies.

jd99

MIS
May 17, 2001
101
US
I am trying to install a package, and I get the error message "CC variable missing", or something along those lines. Yet, I do a pkginfo |grep *gcc*, and see that the package is installed. I do a pkgcheck, all comes out well. Why can't I install software then?

Thanks,
Casey
 
in a csh type:
Code:
setenv CC `which gcc`
in other shells type:
Code:
export CC ; CC=`which gcc`

assuming that gcc is in your path.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top