Displaying 1 result from an estimated 1 matches for "committer_d".
Did you mean:
committed
2014 Jul 04
2
[LLVMdev] Using git bisect with LLVM
...ght I
would share them here, in the hope that they're useful for others.
The main difficulty was to check out the version of clang and compiler-rt
that would compile with a given LLVM revision. I used the following code in
the bisect script:
checkout() {
cd $LLVM_SRC
local committer_date="$(git log --pretty=format:%cd -n1 'HEAD')"
cd $LLVM_SRC/tools/clang
git checkout "$(git rev-list -n 1 --before="$committer_date"
origin/google/testing)"
cd $LLVM_SRC/projects/compiler-rt
git checkout "$(git rev-list -n 1...