I have these lines in my make file:
ifeq ($(SYSTEM),SOLARIS)
# SUN Solaris 8 no c99
ifeq ($(OSVER),510)
CC=c99 -Xa -mt
LD=c99
else
CC=cc -Xa -mt -xc99=no_lib
LD=cc
I have to compile my code in Solaris 11. Previously someone compiled in Solaris 10 or 9. Not sure which.
If I execute which CC
its giving "no CC in user/bin" error. But my Solaris 11 has GCC installed in it. Do I have change CC=GCC or I have install new CC. If i have to install new CC which one I have to install?