[oe-commits] [openembedded-core] branch master updated: meta-environment: ensure corret TOOLCHAIN_CONFIGSITE_NOCACHE value

git at git.openembedded.org git at git.openembedded.org
Mon Sep 26 09:06:34 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

The following commit(s) were added to refs/heads/master by this push:
       new  1e13d1f   meta-environment: ensure corret TOOLCHAIN_CONFIGSITE_NOCACHE value
1e13d1f is described below

commit 1e13d1fd22186af5544e7248dc12635cd2f2e08b
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Mon Sep 26 11:20:28 2016 +0800

    meta-environment: ensure corret TOOLCHAIN_CONFIGSITE_NOCACHE value
    
    Expand TOOLCHAIN_CONFIGSITE_NOCACHE value immediately before inheriting
    cross-canadian to avoid HOST_ARCH being changed from TARGET_ARCH to SDK_ARCH,
    thus ensuring its correct value.
    
    [YOCTO #10255]
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/meta/meta-environment.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb
index 49d45f6..d9e045f 100644
--- a/meta/recipes-core/meta/meta-environment.bb
+++ b/meta/recipes-core/meta/meta-environment.bb
@@ -12,6 +12,8 @@ REAL_MULTIMACH_TARGET_SYS = "${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}"
 
 inherit toolchain-scripts
 TOOLCHAIN_NEED_CONFIGSITE_CACHE_append = " zlib"
+# Need to expand here before cross-candian changes HOST_ARCH -> SDK_ARCH
+TOOLCHAIN_CONFIGSITE_NOCACHE := "${TOOLCHAIN_CONFIGSITE_NOCACHE}"
 
 SDK_DIR = "${WORKDIR}/sdk"
 SDK_OUTPUT = "${SDK_DIR}/image"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list