aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/clang-analyzer.sh
blob: e7820c413ced642e92713631715641d830d8ad8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash

set -ex

P="${PN}-clang-analyzer-${PV}"

set +e
scan-build \
    --use-cc="${CC:-clang}" \
    -o reports \
    make
RV=$?
set -e

NUM_REPORTS=$(ls -1 reports | wc -l)
[[ ${NUM_REPORTS} -eq 0 ]] && exit ${RV}
[[ ${NUM_REPORTS} -eq 1 ]]

REPORTS="reports/$(ls -1 reports)"
if [[ -d "${REPORTS}" ]]; then
    mv "${REPORTS}" clang-analyzer
    tar \
        -cvJf "${P}.tar.xz" \
        clang-analyzer
    RV=1
fi

exit ${RV}