Skip to content

Instantly share code, notes, and snippets.

@janisozaur
Last active December 29, 2015 20:59
Show Gist options
  • Save janisozaur/7727632 to your computer and use it in GitHub Desktop.
Save janisozaur/7727632 to your computer and use it in GitHub Desktop.
iwyu-wrapper
#!/bin/bash
/usr/local/bin/clang++ "$@" || exit $?
args="$*"
if [ "${args#* -c}" != "$args" ]; then
out="${args#* -o}"
out="${out%.o *}"
if [ "x$out" != "x" ]; then
include-what-you-use "$@" > $out.iwyu.txt 2>&1
fi
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment