ccache 3.2.1 发布,高速的 C/C++ 编译工具
#广州# OSC源创会第31期(12月27日)开始报名,OSC自曝家丑!
ccache 3.2.1 发布,此版本是个 bug 修复版本:
Fixed regression in temporary file handling
CACHEDIR.TAG
files are now created in the [0-9a-f] subdirectoriesMade the default cache size suffix
G
-fdiagnostics-color=auto
is now passed to the compiler even if stderr is redirected.Added missing documentation for
max_files
andmax_size
configuration options.
ccache(“compiler cache”的缩写)是一个编译器缓存,该工具会高速缓存编译生成的信息,并在编译的特定部分使用高速缓存的信息, 比如头文件,这样就节省了通常使用 cpp 解析这些信息所需要的时间。如果您编译清单 2 中的文件,假定 foobar.h
中包含对其他头文件的引用,ccache 会用那个文件的 cpp-parsed 版本来 取代 include
声明。就那么简单。不是真正去读取、理解并解释其内容,ccache 只是 将最终的文本拷贝到文件中,使得它可以立即被编译。