Ai大模型相关案例,AI
ccache 3.2.3 发布,此版本更新内容如下:
新特性和改进
- Added support for compiler option 
-gsplit-dwarf. 
Bug 修复
- Support external zlib in nonstandard directory.
 - Avoid calling 
exit()inside an exit handler. - Let exit handler terminate properly.
 - Bail out on compiler option 
--save-tempsin addition to-save-temps. - Only log “Disabling direct mode” once when failing to read potential include files.
 
ccache(“compiler cache”的缩写)是一个编译器缓存,该工具会高速缓存编译生成的信息,并在编译的特定部分使用高速缓存的信息, 比如头文件,这样就节省了通常使用 cpp 解析这些信息所需要的时间。如果您编译清单 2 中的文件,假定          foobar.h 中包含对其他头文件的引用,ccache 会用那个文件的 cpp-parsed 版本来 取代          include 声明。就那么简单。不是真正去读取、理解并解释其内容,ccache 只是 将最终的文本拷贝到文件中,使得它可以立即被编译。









