diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2022-12-14 17:26:35 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-06-11 20:07:57 +0000 |
commit | cad92ecca8841450939e22e0da265507fec1bb9a (patch) | |
tree | 7d92cbd721400d33730788b95fc150625f48a5f1 /toolchain.inc | |
parent | 0e93a6f184539c0ed3b436ce674aa45984402ed6 (diff) |
Append per-board ccache statistics in log
Starting with ccache 4.4 it is possible to collect statistics about
cache miss/hit rates in a separate file.
Add the info of the build at end of created make.log file or on stdout.
Change-Id: I1bab712712f4d6379ec6733fdc55b234e3845da7
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75087
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'toolchain.inc')
-rw-r--r-- | toolchain.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain.inc b/toolchain.inc index 47c5fe9b85..3165586d78 100644 --- a/toolchain.inc +++ b/toolchain.inc @@ -10,6 +10,7 @@ endif export CCACHE_COMPILERCHECK=content export CCACHE_BASEDIR=$(top) +export CCACHE_STATSLOG=$(obj)/ccache.stats $(foreach arch,$(ARCH_SUPPORTED), \ $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch)))) |