rebuild world false

/usr/bin/CC (base system!) has nothing to do with gcc45 (port!). If you deleted /usr/bin/CC (why would you do that?) you could try restoring it from a CD (if you can). Unfortunately, CC is not a hard link to cc/gcc

Code:
$ ls -ali /usr/bin/cc /usr/bin/gcc /usr/bin/CC
[B]5323037[/B] -r-xr-xr-x  3 root  wheel  [B]200120[/B] Mar 24 17:09 /usr/bin/CC
5322785 -r-xr-xr-x  2 root  wheel  410336 Mar 24 17:09 /usr/bin/cc
5322785 -r-xr-xr-x  2 root  wheel  410336 Mar 24 17:09 /usr/bin/gcc

although it produces the same output:

Code:
$ /usr/bin/CC --version
CC (GCC) 4.2.1 20070719  [FreeBSD]
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
DutchDaemon said:
/usr/bin/CC (base system!) has nothing to do with gcc45 (port!). If you deleted /usr/bin/CC (why would you do that?) you could try restoring it from a CD (if you can). Unfortunately, CC is not a hard link to cc/gcc

No, it's linked to c++/g++

Code:
gong:/usr/bin% ls -ali | grep 847896
847896 -r-xr-xr-x   3 root  wheel    199904 Nov 21 15:30 CC*
847896 -r-xr-xr-x   3 root  wheel    199904 Nov 21 15:30 c++*
847896 -r-xr-xr-x   3 root  wheel    199904 Nov 21 15:30 g++*
 
I see. Hope he didn't delete those as well ... So, OP, [cmd=]ln c++ CC[/cmd] or [cmd=]ln g++ CC[/cmd] this time.
 
No.I was not deleted them :) rebuild world finished perfect without any others errors :)
With your help i stop seeing errors everywhere,all are running very good and also CC now is back on my /usr/bin :)
 
Back
Top