aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/wrap-compiler-for-flag-check
blob: 7d074d7d11d150dded36ac7dfe46d9d016ab9d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

# There is no way to make clang's "argument unused" warning fatal.  So when
# configure checks for supported flags, it runs $CXX and $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