summaryrefslogtreecommitdiffstats
path: root/iwyu/run_iwyu.sh
blob: 37843dcf9817dcb053884f071e8ca93b753fad47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

SCRIPT=$(readlink -f "$0")
SCRIPTDIR=$(dirname "$SCRIPT")
SOURCEDIR="$SCRIPTDIR/.."

PKG_NL3=$(pkg-config --cflags libnl-3.0)

IWYU=${IWYU:-iwyu}

cd "$SOURCEDIR" || exit

make clean
make --keep-going --silent CC="$IWYU" CFLAGS="-Xiwyu --no_comments -Xiwyu --no_fwd_decl -Xiwyu --mapping_file='$SCRIPTDIR/htop.imp' $PKG_NL3"

© 2014-2024 Faster IT GmbH | imprint | privacy policy