1.安装
sudo apt-get install ccache
2.使用
ccache -s # 显示状态参数 (s是英语status的缩写,表示《状态》)
ccache -C # 清除缓存(C是大写的,是英语Clear的缩写,表示《清除》)
3.配置
vim ~/.bashrc
export NDK_CCACHE = ccache
export CCACHE_DIR = ~/.ccache # (目录随便指定)
export PATH = /usr/lib/ccache:$PATH
source ~/.bashrc
ccache -M 2G #(分配2G缓存)