1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 ccache 3.2.3 发布,高速 C/C++ 编译工具 下载

Discussion in '软件资讯' started by 漂亮的石头, 2015-08-24.

  1. 漂亮的石头

    漂亮的石头 版主 Staff Member

    Joined:
    2012-02-10
    Messages:
    487,345
    Likes Received:
    47
    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-temps in 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 只是 将最终的文本拷贝到文件中,使得它可以立即被编译。
    ccache 3.2.3 发布,高速 C/C++ 编译工具下载地址
     
Loading...