blob: 262db6672cf542a6b085b58ddf6a1c24b64a504d [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
4# SPDX-License-Identifier: MIT
5#
6
7#
Brad Bishop19323692019-04-05 15:28:33 -04008# Usage:
9# - Enable ccache
10# Add the following line to a conffile such as conf/local.conf:
11# INHERIT += "ccache"
12#
13# - Disable ccache for a recipe
14# Add the following line to the recipe if it can't be built with ccache:
15# CCACHE_DISABLE = '1'
16#
17# - Share ccache files between different builds
18# Set CCACHE_TOP_DIR to a shared dir
19# CCACHE_TOP_DIR = /path/to/shared_ccache/
20#
21# - TO debug ccahe
22# export CCACHE_DEBUG = "1"
23# export CCACHE_LOGFILE = "${CCACHE_DIR}/logfile.log"
24# And also set PARALLEL_MAKE = "-j 1" to get make the log in order
25#
26
27# Set it to a shared location for different builds, so that cache files can
28# be shared between different builds.
29CCACHE_TOP_DIR ?= "${TMPDIR}/ccache"
30
Andrew Geissler5082cc72023-09-11 08:41:39 -040031# ccache-native and cmake-native have a circular dependency
32# that affects other native recipes, but not all.
33# Allows to use ccache in specified native recipes.
34CCACHE_NATIVE_RECIPES_ALLOWED ?= ""
35
Brad Bishop19323692019-04-05 15:28:33 -040036# ccahe removes CCACHE_BASEDIR from file path, so that hashes will be the same
37# in different builds.
38export CCACHE_BASEDIR ?= "${TMPDIR}"
39
40# Used for sharing cache files after compiler is rebuilt
41export CCACHE_COMPILERCHECK ?= "%compiler% -dumpspecs"
42
43export CCACHE_CONFIGPATH ?= "${COREBASE}/meta/conf/ccache.conf"
44
45export CCACHE_DIR ?= "${CCACHE_TOP_DIR}/${MULTIMACH_TARGET_SYS}/${PN}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046
Andrew Geisslerd1e89492021-02-12 15:35:20 -060047# Fixed errors:
48# ccache: error: Failed to create directory /run/user/0/ccache-tmp: Permission denied
49export CCACHE_TEMPDIR ?= "${CCACHE_DIR}/tmp"
50
Brad Bishop6e60e8b2018-02-01 10:27:11 -050051# We need to stop ccache considering the current directory or the
52# debug-prefix-map target directory to be significant when calculating
53# its hash. Without this the cache would be invalidated every time
54# ${PV} or ${PR} change.
55export CCACHE_NOHASHDIR ?= "1"
56
Brad Bishop19323692019-04-05 15:28:33 -040057python() {
58 """
59 Enable ccache for the recipe
60 """
61 pn = d.getVar('PN')
Andrew Geissler5082cc72023-09-11 08:41:39 -040062 if (pn in d.getVar('CCACHE_NATIVE_RECIPES_ALLOWED') or
63 not (bb.data.inherits_class("native", d) or
64 bb.utils.to_boolean(d.getVar('CCACHE_DISABLE')))):
Andrew Geissler706d5aa2021-02-12 15:55:30 -060065 d.appendVar('DEPENDS', ' ccache-native')
Brad Bishop19323692019-04-05 15:28:33 -040066 d.setVar('CCACHE', 'ccache ')
67}
68
69addtask cleanccache after do_clean
70python do_cleanccache() {
71 import shutil
72
73 ccache_dir = d.getVar('CCACHE_DIR')
74 if os.path.exists(ccache_dir):
75 bb.note("Removing %s" % ccache_dir)
76 shutil.rmtree(ccache_dir)
77 else:
78 bb.note("%s doesn't exist" % ccache_dir)
79}
80addtask cleanall after do_cleanccache
81do_cleanccache[nostamp] = "1"