[oe] BitBake parallel parsing testing

Reinhard Thies Reinhard.Thies at web.de
Wed Nov 24 20:02:22 UTC 2010


Hi Chris,

On Tuesday 23 November 2010 15:29:00 Chris Larson wrote:
> Greetings all,
> This is a request for further testers for the parallel parsing branch
> of bitbake, as well as for review of the code.  I'm fairly certain
> that the last real issue with it was resolved yesterday, and I haven't
> gotten any reports of problems from those testing it since last week,
> so I'm opening it up to more public testing, so we can be absolutely
> certain that we can merge it to master in the near future without
> risking problems.
> 
It's a great improvement :-))

I had it running on an older branch based on stable/2009.
I had to add the following workaround to get it running:

diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index 19ca45d..11f9a01 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -93,6 +93,10 @@ def vercmp(ta, tb):
     (ea, va, ra) = ta
     (eb, vb, rb) = tb

+    if ea == '':
+        ea = '0'
+    if eb == '':
+        eb = '0'
     r = int(ea)-int(eb)
     if (r == 0):
         r = vercmp_part(va, vb)


With that fix it worked fine at all.

Now my CoreI7 makes fun ;-)

thx,
Reinhard 




More information about the Openembedded-devel mailing list