ccache cache miss很慢的编译速度很慢

时间:2016-06-27 14:37:27

标签: c++ ios xcode performance ccache

刚开始使用基于this tutorial的ccache,到目前为止我喜欢它。然而,缓存错过的速度非常慢。以下是我的结果:

Regular clean build without ccache : 1m40s
First build with ccache : 4m36s
Second build with ccache : 30s

我不知道从哪里开始调试。性能页面(https://ccache.samba.org/performance.html)提到了make文件的复杂性如何降低编译速度,但在这种情况下我使用Xcode,因此ccache的调用应该相对较快。我期待一些性能下降,但不是这么多!

使用版本3.2.5有我目前的设置:

export CCACHE_MAXSIZE=3G
export CCACHE_HARDLINK=true
export CCACHE_SLOPPINESS=pch_defines,file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches

请注意,如果改变某些内容,我会使用pch。

1 个答案:

答案 0 :(得分:4)

您可以运行命令" ccache -s"查看统计数据。

从这个ccache bug线程https://github.com/ccache/ccache/issues/54末尾的实验中,尝试减少所使用的并行核心编译器可能会有所帮助,来自多个进程的文件锁定可能是根本原因。