All of lore.kernel.org
 help / color / mirror / Atom feed
From: Reinhard Thies <Reinhard.Thies@web.de>
To: openembedded-devel@lists.openembedded.org
Subject: Re: BitBake parallel parsing testing
Date: Wed, 24 Nov 2010 21:02:22 +0100	[thread overview]
Message-ID: <201011242102.22992.Reinhard.Thies@web.de> (raw)
In-Reply-To: <AANLkTim3cKQRr0e1VQRiLf=95jOHC5=TGPQfXbDoZCmj@mail.gmail.com>

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 



  parent reply	other threads:[~2010-11-24 20:06 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-23 14:29 BitBake parallel parsing testing Chris Larson
2010-11-23 14:34 ` Koen Kooi
2010-11-23 14:38   ` Chris Larson
2010-11-23 15:02     ` Robert Foerster
2010-11-23 15:14       ` Chris Larson
2010-11-23 15:38 ` Michael Smith
2010-11-23 15:41   ` Robert Foerster
2010-11-23 16:42     ` Khem Raj
2010-11-23 18:26 ` Koen Kooi
2010-11-23 18:42   ` Chris Larson
2010-11-23 19:05     ` Chris Larson
2010-11-23 19:17       ` Khem Raj
2010-11-24  9:14     ` Koen Kooi
2010-11-24 13:58       ` Chris Larson
2010-11-24  8:43 ` Petr Štetiar
2010-11-24 20:02 ` Reinhard Thies [this message]
2010-11-29 19:41 ` Chris Larson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201011242102.22992.Reinhard.Thies@web.de \
    --to=reinhard.thies@web.de \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.