Grep for clang warnings when testing compiler flag support

There is no way to make clang's "argument unused" warning fatal.

Ideally the search string would also include 'clang: ' but this output might
depend on clang's argv[0].
This commit is contained in:
Keegan McAllister
2012-04-07 23:50:52 -04:00
committed by Keith Winstein
parent b5ab0d0736
commit 62b6137ff5
2 changed files with 38 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/sh
# There is no way to make clang's "argument unused" warning fatal. So when
# configure checks for supported flags, it runs $CC, $CXX, $LD via this
# wrapper.
#
# Ideally the search string would also include 'clang: ' but this output might
# depend on clang's argv[0].
if out=`"$@" 2>&1`; then
echo "$out"
if echo "$out" | grep 'warning: argument unused' >/dev/null; then
echo "$0: found clang warning"
exit 1
else
exit 0
fi
else
code=$?
echo "$out"
exit $code
fi