diff options
Diffstat (limited to 'extra-tools')
-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 |