summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index fbc0ca205a..9b26580f1b 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -414,6 +414,14 @@ export PATH
414################################################################## 414##################################################################
415 415
416CCACHE ??= "" 416CCACHE ??= ""
417# Disable ccache explicitly if CCACHE is null since gcc may be a symlink
418# of ccache some distributions (e.g., Fedora 17).
419export CCACHE_DISABLE ??= "${@[0,1][d.getVar('CCACHE', True) == '']}"
420# Assign CCACHE_DIR a default vaule to fix a bug of ccache 3.1.7,
421# since it would always create CCACHE_DIR/.ccache even if
422# CCACHE_DISABLE = 1.
423export CCACHE_DIR ??= "${@os.getenv('HOME')}"
424
417TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TARGET}" 425TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TARGET}"
418 426
419export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" 427export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}"