summaryrefslogtreecommitdiff
path: root/build/make/configure.sh
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-02-05 17:31:48 -0800
committerJames Zern <jzern@google.com>2014-02-05 17:31:48 -0800
commit8fcac742560122e089c36d45238af7d8af5f0f89 (patch)
treee82748dac8e1cd4bb17e1eccc37182d6449df3e7 /build/make/configure.sh
parent6432ae4902cf07a9751b02c2bc5ff9e9beca8960 (diff)
downloadlibvpx-8fcac742560122e089c36d45238af7d8af5f0f89.tar
libvpx-8fcac742560122e089c36d45238af7d8af5f0f89.tar.gz
libvpx-8fcac742560122e089c36d45238af7d8af5f0f89.tar.bz2
libvpx-8fcac742560122e089c36d45238af7d8af5f0f89.zip
configure: use -Werror when testing CXX flags w/clang
Change-Id: Ia7d827d391941b4b507e568c99cc83531273433c
Diffstat (limited to 'build/make/configure.sh')
-rwxr-xr-xbuild/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 8dcb9bbf4..b5151da13 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -337,7 +337,7 @@ check_cxxflags() {
# Catch CFLAGS that trigger CXX warnings
case "$CXX" in
- *g++*) check_cxx -Werror "$@" <<EOF
+ *c++-analyzer|*clang++|*g++*) check_cxx -Werror "$@" <<EOF
int x;
EOF
;;