Commit 2e3ed02c authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "Avoid unknown warning warnings and fix -Werror on macosx."

Showing with 2 additions and 2 deletions
...@@ -327,7 +327,7 @@ EOF ...@@ -327,7 +327,7 @@ EOF
check_cflags() { check_cflags() {
log check_cflags "$@" log check_cflags "$@"
check_cc "$@" <<EOF check_cc -Werror "$@" <<EOF
int x; int x;
EOF EOF
} }
...@@ -341,7 +341,7 @@ check_cxxflags() { ...@@ -341,7 +341,7 @@ check_cxxflags() {
int x; int x;
EOF EOF
;; ;;
*) check_cxx "$@" <<EOF *) check_cxx -Werror "$@" <<EOF
int x; int x;
EOF EOF
;; ;;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment