Clean up and improve the devel/ scripts.

This commit is contained in:
Emil Mikulic
2013-04-28 21:16:40 +10:00
parent c7db17bcec
commit f29b75fb1d
4 changed files with 15 additions and 94 deletions

View File

@ -1,12 +1,14 @@
#!/bin/sh
#
# Run through the clang static analyzer
# Run through the clang static analyzer.
#
TARGET=$(dirname $0)/../darkhttpd.c
# Adjust to suit:
LLVM=$HOME/llvm
CHECKER=$LLVM/llvm/tools/clang/tools/scan-build/ccc-analyzer
env PATH=$LLVM/build/Release/bin:$PATH $CHECKER ../darkhttpd.c
rm -f a.out
$LLVM/llvm/tools/clang/tools/scan-build/scan-build \
-analyze-headers \
--use-analyzer=$LLVM/install/bin/clang \
clang $TARGET