ccache 3.1.4,高速C/C++编译器

来源: OSCHINA
编辑: 红薯
2011-01-10 00:00:00

ccache(“compiler cache”的缩写)是一个编译器缓存,该工具会高速缓存编译生成的信息,并在编译的特定部分使用高速缓存的信息, 比如头文件,这样就节省了通常使用 cpp 解析这些信息所需要的时间。如果您编译清单 2 中的文件,假定 foobar.h 中包含对其他头文件的引用,ccache 会用那个文件的 cpp-parsed 版本来 取代 include 声明。就那么简单。不是真正去读取、理解并解释其内容,ccache 只是 将最终的文本拷贝到文件中,使得它可以立即被编译。

Changes:

1. A work-around for a bug in gzputc() in zlib 1.2.5 has been made.
2. Corrupt manifest files are now removed so that they won't block direct mode hits.
3. ccache now copes with file systems that don't know about symbolic links.
4. The file handle is now correctly closed on write errors when trying to create a cache dir tag

展开阅读全文
点击加入讨论🔥(1) 发布并加入讨论🔥
1 评论
1 收藏
分享
返回顶部
顶部