mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Run through the clang static analyzer
|
||
|
#
|
||
|
|
||
|
# 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
|