diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-19 19:59:18 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-19 19:59:18 +0000 |
commit | cf0a86485de0ecd5426b4ab79359d7f4e69021dc (patch) | |
tree | adabe2f2965ee7d0ede3026be7d08b510f5719db /extra-tools/dumper.sh | |
parent | updated (diff) | |
download | mutator-cf0a86485de0ecd5426b4ab79359d7f4e69021dc.tar.gz mutator-cf0a86485de0ecd5426b4ab79359d7f4e69021dc.zip |
now expects to see clang in path
Diffstat (limited to '')
-rwxr-xr-x | extra-tools/dumper.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra-tools/dumper.sh b/extra-tools/dumper.sh index 3efe7a3..668913d 100755 --- a/extra-tools/dumper.sh +++ b/extra-tools/dumper.sh @@ -39,5 +39,6 @@ do done if [[ "$RUN" == "1" ]]; then - "/home/bloodstalker/llvm/llvm/build/bin/clang" -Xclang -ast-dump -fsyntax-only "$INPUT" "$OPTIONS" > "$OUTPUT" + "clang" -Xclang -ast-dump -fsyntax-only "$INPUT" "$OPTIONS" > "$OUTPUT" + fi |