Skip to content

Commit

Permalink
Fix llvm-gcov to run with LLVM6 and LLVM4
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalohlava committed Jul 17, 2018
1 parent 68e67a8 commit 24daf12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/llvm-gcov.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#!/bin/bash
if [ -d "$LLVM6" ]; then
exec "$LLVM6/bin/llvm-cov" gcov "$@"
else
exec "$LLVM4/bin/llvm-cov" gcov "$@"
fi

0 comments on commit 24daf12

Please sign in to comment.