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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ELM installation error

Status
Not open for further replies.

hasrin

MIS
Jan 18, 2002
40
GB
Hi,
When i try to install elm on solaris 8. i run make all and got this error.. any idea?

# make all
cd lib && make all
cc -O -I.. -I../hdrs -c add_site.c
sh: cc: not found
*** Error code 1
make: Fatal error: Command failed for target `add_site.o'
Current working directory /local/tmp/elm2.5.6/lib
*** Error code 1
make: Fatal error: Command failed for target `all'

thanks
 
It seems the "gcc" is not in your PAHT. So the tryfollowing:

1) locate the path to the "gcc & ccs" on your system by typing which gcc OR whereis gcc ; repeat the same for ccs.
2) Add the path from above to your PATH; example if the above produced /usr/local/bin/gcc then do: export PATH=$PATH:/usr/local/bin
3) Verify that the information has been added correctly by typing echo $PATH
4) Repeat your make-command

goodluck ^^^^^^^^^^^^^^^^^^^^^^^^^^
Experience is the Best Teacher
But its' cost is Heavy!
^^^^^^^^^^^^^^^^^^^^^^^^^^
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top