From 8a08a3209c093f9b1137ec5879d3804026b0df6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 19 Oct 2020 12:05:06 +0200 Subject: IWYU update - Add Settings forward declaration in Process.h - Add assert.h include in XUitls.c - Add conditional stdbool.h include in Object.h - Drop unneeded stddef.h include in Richstring.c - Drop unneeded unistd.h include in Process.h - Drop unneeded string.h include in linux/Platform.c - Use String_eq to avoid string.h include in Action.c - Improve script to run custom iwyu version --- iwyu/run_iwyu.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'iwyu') diff --git a/iwyu/run_iwyu.sh b/iwyu/run_iwyu.sh index 83d2c484..37843dcf 100755 --- a/iwyu/run_iwyu.sh +++ b/iwyu/run_iwyu.sh @@ -6,7 +6,9 @@ SOURCEDIR="$SCRIPTDIR/.." PKG_NL3=$(pkg-config --cflags libnl-3.0) -cd "$SOURCEDIR" +IWYU=${IWYU:-iwyu} + +cd "$SOURCEDIR" || exit make clean -make -k CC="iwyu" CFLAGS="-Xiwyu --no_comments -Xiwyu --no_fwd_decl -Xiwyu --mapping_file='$SCRIPTDIR/htop.imp' $PKG_NL3" +make --keep-going --silent CC="$IWYU" CFLAGS="-Xiwyu --no_comments -Xiwyu --no_fwd_decl -Xiwyu --mapping_file='$SCRIPTDIR/htop.imp' $PKG_NL3" -- cgit v1.2.3