[oe-commits] [openembedded-core] 01/11: icecc.bbclass: Move to shared work directory

git at git.openembedded.org git at git.openembedded.org
Thu Feb 15 13:30:38 UTC 2018


This is an automated email from the git hooks/post-receive script.

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

commit 20a53ac7818f268d4a4c86c8f35ca982baf96acf
Author: Joshua Watt <jpewhacker at gmail.com>
AuthorDate: Mon Feb 12 10:51:56 2018 -0600

    icecc.bbclass: Move to shared work directory
    
    Generate the icecc toolchains in a shared work directory. This class was
    already setup to correctly synchronize creating the toolchains in a
    shared location before the RSS changes, so return to that behavior
    instead of generated the toolchains in each recipe's sysroot.
    Additionally, it makes no sense for each recipe to generate a toolchain,
    only to find it was already generated and uploaded to the compile server
    by another recipe.
    
    Signed-off-by: Joshua Watt <JPEWhacker at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/icecc.bbclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 1cc1c4d..e8725b5 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -151,6 +151,9 @@ def icecc_is_native(bb, d):
         bb.data.inherits_class("cross", d) or \
         bb.data.inherits_class("native", d);
 
+def icecc_dir(bb, d):
+    return d.expand('${TMPDIR}/work-shared/ice')
+
 # Don't pollute allarch signatures with TARGET_FPU
 icecc_version[vardepsexclude] += "TARGET_FPU"
 def icecc_version(bb, d):
@@ -175,8 +178,8 @@ def icecc_version(bb, d):
             archive_name += "-kernel"
 
     import socket
-    ice_dir = d.expand('${STAGING_DIR_NATIVE}${prefix_native}')
-    tar_file = os.path.join(ice_dir, 'ice', archive_name + "- at VERSION@-" + socket.gethostname() + '.tar.gz')
+    ice_dir = icecc_dir(bb, d)
+    tar_file = os.path.join(ice_dir, archive_name + "- at VERSION@-" + socket.gethostname() + '.tar.gz')
 
     return tar_file
 

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


More information about the Openembedded-commits mailing list