-
weibullguy
-
RE: ln -s?
-
Have you taken a look at the man page for ccache? There are two methods to use ccache. The first is to prefix your commands with ccache which might be the best approach while building LFS[code]CC="ccache gcc"[/code]
The second is to create symlinks for gcc, g++, and cc point TO ccache. You're doing it the other way around. If you link ccache to gcc, that's no different than simply using gcc.
-
29 Jun 09
Have you taken a look at the man page for ccache? There are two methods to use ccache. The first is to prefix your commands with ccache which might be the best approach while building LFS
CC="ccache gcc"
The second is to create symlinks for gcc, g++, and cc point TO ccache. You're doing it the other way around. If you link ccache to gcc, that's no different than simply using gcc.