On 17.04.2011, at 19:12, Richard Henderson wrote:

> On 04/17/2011 09:42 AM, Alexander Graf wrote:
>> Mind to split it up? I'm having a hard time reading such huge patches O_o. 
>> Awesome work, btw :).
> 
> What sort of split would you like to see?
> 
> I thought about it, but there's not too many splits that actually
> compile individually.

Yeah, I was in a similar dilemma. I'm pretty sure you can at least split 
linux-user, device emulation and cpu emulation patches :). Usually, I just try 
to split things by file and see if it's easy enough to get back to 
bisectability using a script I got from Avi a while back:

#!/bin/bash -e
for commit in $(git rev-list --reverse "$@"); do
    echo "Commit $commit"
    git checkout "$commit"
    make -j
done


Alex


Reply via email to