summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2022-12-14 17:26:35 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-06-11 20:07:57 +0000
commitcad92ecca8841450939e22e0da265507fec1bb9a (patch)
tree7d92cbd721400d33730788b95fc150625f48a5f1 /Makefile.inc
parent0e93a6f184539c0ed3b436ce674aa45984402ed6 (diff)
downloadcoreboot-cad92ecca8841450939e22e0da265507fec1bb9a.tar.gz
coreboot-cad92ecca8841450939e22e0da265507fec1bb9a.tar.bz2
coreboot-cad92ecca8841450939e22e0da265507fec1bb9a.zip
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 'Makefile.inc')
-rw-r--r--Makefile.inc7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc
index abf47d4fae45..b35ec86a1100 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -66,8 +66,11 @@ coreboot: $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool $(obj)/ifwitool $(
# targets after the build completes by creating a Makefile.inc in the
# site-local directory with a target named 'build_complete::'
build_complete:: coreboot
- printf "\nBuilt %s (%s)\n" $(MAINBOARDDIR) \
- $(CONFIG_MAINBOARD_PART_NUMBER)
+ printf "\nBuilt %s (%s)\n" $(MAINBOARDDIR) $(CONFIG_MAINBOARD_PART_NUMBER)
+ if [ -f "$(CCACHE_STATSLOG)" ]; then \
+ printf "\nccache statistics\n"; \
+ $(CCACHE) --show-log-stats -v; \
+ fi
# This target can be used to run rules after all files were added to CBFS,
# for example to process FMAP regions or the entire image.