5

ccache 统计“调用链接”是什么意思。我以为 ccache 只包装了编译器,而不是链接器?

[Brian@localhost ~]$ ccache -s
cache directory                     /home/Brian/.ccache
cache hit (direct)                 19813
cache hit (preprocessed)              67
cache miss                            11
called for link                      498
called for preprocessing              10
unsupported source language          472
no input file                         12
files in cache                    258568
cache size                          33.8 Gbytes
max cache size                     100.0 Gbytes
4

2 回答 2

5

ccache确实不支持链接。

然而,它确实取代了 C 编译器(更具体地说,是 C 编译器驱动程序)(查看它的安装和使用位置和方式)。正因为如此,它需要“传递”它接收到的任何命令,而不是处理/修改自己到工具链的各个部分。

于 2015-04-23T16:04:35.753 回答
5

阅读发行说明对我来说也不是很清楚:

与单个目标文件链接时,“调用链接”的统计计数器现在可以正确更新。

但这意味着您在单个操作中进行编译和链接,因此 ccache 无法透明地提供结果。

带有基本 hello.c 程序的演示。首先让我们清除一切:

$ ccache -Czs
Cleared cache
Statistics cleared
cache directory                     /home/jdg/.ccache
cache hit (direct)                     0
cache hit (preprocessed)               0
cache miss                             0
files in cache                         0

一步完成编译和链接(两次,只是为了确定):

$ ccache g++ hello.c
$ ccache g++ hello.c
$ ccache -s
cache hit (direct)                     0
cache hit (preprocessed)               0
cache miss                             0
called for link                        2
files in cache                         0

什么都没有被缓存,因为 ccache 就是不能

分两个单独的步骤进行(也是两次):

$ ccache g++ -c hello.c ; g++ hello.o
$ ccache g++ -c hello.c ; g++ hello.o
$ ccache -s
cache hit (direct)                     1
cache hit (preprocessed)               0
cache miss                             1
called for link                        4
no input file                          2
files in cache                         2

现在它起作用了:

  • 第一次编译时缓存未命中,并存储结果(两个文件:清单加 .o)
  • 第二次缓存命中
  • g++ 总共调用了 4 次链接,包括 2 次没有源但只有 .o

要求进行预处理?很简单,您只需使用编译器来扩展所有包含/定义的内容(例如,在查找依赖项时)

$ g++ -E hello.c
$ g++ -M hello.c
$ ccache -s
cache hit (direct)                     1
cache hit (preprocessed)               0
cache miss                             1
called for link                        4
called for preprocessing               2
unsupported compiler option            1
no input file                          2
files in cache                         2

希望这可以帮助 !

于 2017-03-04T12:06:49.640 回答