当我使用ccache -s时,我会得到这样的结果。
root@iZwz98um4r4f2aucz24e1yZ:~# ccache -s
cache directory /root/.ccache
primary config /root/.ccache/ccache.conf
secondary config (readonly) /etc/ccache.conf但是,当我为不同的C++项目设置不同的环境CCACHE_DIR时,我如何获得我的CCACHE_DIR统计数据?有没有可以做到这一点的参数?
发布于 2020-07-29 22:20:37
执行此操作的方法是在运行ccache -s时设置CCACHE_DIR (如果需要,可以临时设置),例如:
CCACHE_DIR=/path/to/the/cache/dir ccache -shttps://stackoverflow.com/questions/62579701
复制相似问题