Teach the scan-build script to output to a chosen directory

This commit is contained in:
Nick Mathewson 2017-09-12 21:42:36 -04:00
parent f9f3014ce6
commit a28e239b17
1 changed files with 7 additions and 1 deletions

View File

@ -46,6 +46,12 @@ NOISY_CHECKERS="\
-enable-checker alpha.deadcode.UnreachableCode \
"
if test "x$SCAN_BUILD_OUTPUT" != "x"; then
OUTPUTARG="-o $SCAN_BUILD_OUTPUT"
else
OUTPUTARG=""
fi
scan-build \
$CHECKERS \
./configure
@ -53,7 +59,7 @@ scan-build \
make clean
scan-build \
$CHECKERS \
$CHECKERS $OUTPUTARG \
make -j5 -k
CHECKERS="\