3
如何设置ccache?
我想使用ccache加快编译速度。 我遇到了如何启用ccache?。 到目前为止,这是我所做的: $ sudo apt-get install -y ccache $ dpkg -l ccache ii ccache 3.1.6-1 Compiler cache for fast recompilation of C/C++ code $ whereis ccache ccache: /usr/bin/ccache /usr/lib/ccache /usr/bin/X11/ccache /usr/share/man/man1/ccache.1.gz 我ccache通过将路径添加到~/.bashrc文件中来添加该路径: $ export PATH="/usr/lib/ccache:$PATH" $ source ~/.bashrc $ echo $PATH /usr/lib/ccache:/usr/local/cuda-5.5/bin/:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 符号链接看起来不错: $ ll /usr/lib/ccache/ total 76 drwxr-xr-x …