Merge "configure: use -Werror when testing CXX flags w/clang"
diff --git a/build/make/configure.sh b/build/make/configure.sh index 8dcb9bb..b5151da 100755 --- 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 ;;