前言
- 在编译大型C++项目代码时编译时间比较长,那么可以使用ccache来加速代码的编译,一起来学习吧。
ccache是什么
- ccache是一个编译器缓存。它通过缓存以前编译的结果并检测何时再次进行相同的编译来加快重新编译的速度。ccache是以空间换取速度,ccache非常适合经常make clean(或删除out目录)后重新编译的情况。
官网:ccache官方文档
ccache使用
- 安装
sudo apt-get install ccache
查看安装位置
which ccache
查看版本
ccache -V
- 配置
- 添加环境变量
sudo vim /etc/profileexport CCACHE_DIR=/home/dh/ccache export CCACHE_HARDLINK=true export CCACHE_SLOPPINESS=pch_defines,file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches
- 环境变量生效
source /etc/profile
- ccache 常用命令及配置参数
# 设置缓存大小
ccache -M 50G
# 清空缓存
ccache -C
# 查看缓存信息
ccache -s
# 清空统计
ccache -C -z
export CCACHE_HARDLINK=true # 如果为true, ccache将尝试使用硬链接来存储和获取缓存的对象文件。默认为false。通过硬链接存储的文件不能被压缩,所以如果启用了这个选项,缓存的大小可能会大得多。性能会提高
export USE_CCACHE=1 #是否开启ccache,如果不用请设置为0
export CCACHE_COMPRESS=1 #编译缓存是否压缩,压缩节省空间但性能略低。【 1:压缩 】【 0:不压缩 】
export CCACHE_EXEC=/usr/local/bin/ccache #ccache的执行程序路径
export CCACHE_DIR= #这个是缓存文件路径,默认是 ~/.ccache目录
export CCACHE_SLOPPINESS=pch_defines,file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches # 忽略时间相关改动
- 取代编译器
# 修改环境变量
export CC="ccache gcc"
export CPP="ccache cpp"
export CXX="ccache g++"
# 命令行设置
export set CC='ccache gcc'
export set CXX='ccache g++'
export CPP="ccache cpp"
- CMake中使用ccache
cmake -D CMAKE_CXX_COMPILER="ccache" -D CMAKE_CXX_COMPILER_ARG1="g++" -D CMAKE_C_COMPILER="ccache" -D CMAKE_C_COMPILER_ARG1="gcc"