其他分享
首页 > 其他分享> > ccache安装配置

ccache安装配置

作者:互联网

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缓存)

标签:配置,bashrc,2G,export,ccache,PATH,安装,CCACHE
来源: https://www.cnblogs.com/INnoVationv2/p/16439094.html