mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
15 lines
321 B
Bash
Executable File
15 lines
321 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 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
|
|
|
|
$LLVM/llvm/tools/clang/tools/scan-build/scan-build \
|
|
-analyze-headers \
|
|
--use-analyzer=$LLVM/install/bin/clang \
|
|
clang $TARGET
|