On Fri, Mar 16, 2012 at 03:51:49PM -0400, Will Coleda wrote:
> In this case, if you build rakudo with --gen-parrot, you'll whatever
> the recommended version for that release of rakudo.
...or any later version, if the parrot/ subdirectory is a git repository.
> So, you could remove the ./install directory before each bisect run
> and get a version of parrot that will at least probably work with that
> version of rakudo.
Since --gen-parrot accepts later releases, you might need to
remove or update the parrot/ directory as well. And nqp/ is
similarly implicated as well.
So, a true rebuild likely means doing something like:
( cd nqp; git checkout $(cat ../tools/build/NQP_REVISION) )
perl Configure.pl --gen-parrot=$(cat nqp/tools/build/PARROT_REVISION)
Pm