summaryrefslogtreecommitdiff
path: root/import-layers/yocto-poky/meta/classes/ccache.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/classes/ccache.bbclass')
-rw-r--r--import-layers/yocto-poky/meta/classes/ccache.bbclass11
1 files changed, 0 insertions, 11 deletions
diff --git a/import-layers/yocto-poky/meta/classes/ccache.bbclass b/import-layers/yocto-poky/meta/classes/ccache.bbclass
deleted file mode 100644
index 960902065..000000000
--- a/import-layers/yocto-poky/meta/classes/ccache.bbclass
+++ /dev/null
@@ -1,11 +0,0 @@
-CCACHE = "${@bb.utils.which(d.getVar('PATH'), 'ccache') and 'ccache '}"
-export CCACHE_DIR ?= "${TMPDIR}/ccache/${MULTIMACH_TARGET_SYS}/${PN}"
-
-# We need to stop ccache considering the current directory or the
-# debug-prefix-map target directory to be significant when calculating
-# its hash. Without this the cache would be invalidated every time
-# ${PV} or ${PR} change.
-export CCACHE_NOHASHDIR ?= "1"
-
-DEPENDS_append_class-target = " ccache-native"
-DEPENDS[vardepvalueexclude] = " ccache-native"