aboutsummaryrefslogtreecommitdiffstats
path: root/extra-tools
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-19 19:59:18 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-19 19:59:18 +0000
commitcf0a86485de0ecd5426b4ab79359d7f4e69021dc (patch)
treeadabe2f2965ee7d0ede3026be7d08b510f5719db /extra-tools
parentupdated (diff)
downloadmutator-cf0a86485de0ecd5426b4ab79359d7f4e69021dc.tar.gz
mutator-cf0a86485de0ecd5426b4ab79359d7f4e69021dc.zip
now expects to see clang in path
Diffstat (limited to 'extra-tools')
-rwxr-xr-xextra-tools/dumper.sh3
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