summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 5d994f067d..a318d1ca58 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -357,8 +357,11 @@ FILESYSTEM_PERMS_TABLES ?= "${@'files/fs-perms.txt' if oe.types.boolean(d.getVar
357# General work and output directories for the build system. 357# General work and output directories for the build system.
358################################################################## 358##################################################################
359 359
360TCMODE ?= "default"
361TCLIBC ?= "glibc"
360TMPDIR ?= "${TOPDIR}/tmp" 362TMPDIR ?= "${TOPDIR}/tmp"
361CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}" 363
364CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('MACHINE'))]}${@['', '/' + str(d.getVar('SDKMACHINE'))][bool(d.getVar('SDKMACHINE'))]}"
362# The persistent cache should be shared by all builds 365# The persistent cache should be shared by all builds
363PERSISTENT_DIR = "${TOPDIR}/cache" 366PERSISTENT_DIR = "${TOPDIR}/cache"
364LOG_DIR = "${TMPDIR}/log" 367LOG_DIR = "${TMPDIR}/log"