shithub: libvpx

Download patch

ref: 0addb601720ca65b1cfd245263c5ccff42a14386
parent: 06a28e93e7e106fb977a1549439270bb38edcbe0
parent: 8fcac742560122e089c36d45238af7d8af5f0f89
author: James Zern <[email protected]>
date: Wed Feb 5 13:47:24 EST 2014

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

--- 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
       ;;