|
|
发表于 2006-1-14 07:32:10
|
显示全部楼层
我按照这个来的,也没有成功。。。。
INSTALLATION
There are two ways to use ccache. You can either prefix your compile
commands with "ccache" or you can create a symbolic link between ccache
and the names of your compilers. The first method is most convenient if
you just want to try out ccache or wish to use it for some specific
projects. The second method is most useful for when you wish to use
ccache for all your compiles.
To install for usage by the first method just copy ccache to somewhere
in your path.
To install for the second method do something like this:
cp ccache /usr/local/bin/
ln -s /usr/local/bin/ccache /usr/local/bin/gcc
ln -s /usr/local/bin/ccache /usr/local/bin/g++
ln -s /usr/local/bin/ccache /usr/local/bin/cc
This will work as long as /usr/local/bin comes before the path to gcc
(which is usually in /usr/bin). After installing you may wish to run
"which gcc" to make sure that the correct link is being used.
Note! Do not use a hard link, use a symbolic link. A hardlink will
cause "interesting" problems. |
|