summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2014-01-18 15:02:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-21 10:20:11 +0000
commit9abc0028fc2b8d7d79b280d30bdbd987fca2b6d8 (patch)
tree9077ee5d83e58e685da6124012f79eb3bd625749 /meta
parentb908caca1af1d4150eafd3d3001ea19599657270 (diff)
downloadpoky-9abc0028fc2b8d7d79b280d30bdbd987fca2b6d8.tar.gz
sstatesig: include native/cross/nativesdk deps in target signatures
* I don't have any real evidence or good statistics for this, but when comparing signature dumps from my big bitbake world builds I usually see a lot of rebuilds caused by changes in .bbclasses and only very rare would be the case where oe-core upgrade brings changes in -native recipes and no change in .bbclasses used from target recipes * changing the default to include them shouldn't cause significant increase in rebuilds and sstate reuse a bit safer * people working on toolchain (e.g. using gcc from AUTOREV) can easily extend sstate_rundepfilter to ignore them again (it's easier than removing existing filter), example how add own signature handler in your layer is here: https://github.com/openwebos/meta-webos/commit/9ac3a7c803e7793b3274e4998f167b6278db8042 (From OE-Core rev: 336a7897e39b9e42dcfcba9e2520ea96b0c6a8d6) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/sstatesig.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 3011f16a77..8b0e344501 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -36,10 +36,6 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
36 if isPackageGroup(fn): 36 if isPackageGroup(fn):
37 return False 37 return False
38 38
39 # Drop native/cross/nativesdk dependencies from target recipes
40 if isNative(depname) or isCross(depname) or isNativeSDK(depname):
41 return False
42
43 # Exclude well defined machine specific configurations which don't change ABI 39 # Exclude well defined machine specific configurations which don't change ABI
44 if depname in siggen.abisaferecipes and not isImage(fn): 40 if depname in siggen.abisaferecipes and not isImage(fn):
45 return False 41 return False