shithub: libvpx

Download patch

ref: 8fcac742560122e089c36d45238af7d8af5f0f89
parent: 6432ae4902cf07a9751b02c2bc5ff9e9beca8960
author: James Zern <jzern@google.com>
date: Wed Feb 5 12:31:48 EST 2014

configure: use -Werror when testing CXX flags w/clang

Change-Id: Ia7d827d391941b4b507e568c99cc83531273433c

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -337,7 +337,7 @@
 
     # 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
       ;;