Commit b81be25d authored by Kenton Varda's avatar Kenton Varda

I give up. Disable -Wsign-compare.

parent da17193a
......@@ -153,8 +153,10 @@ done
# Build optimized builds because they catch more problems, but also enable debugging macros.
# Enable lots of warnings and make sure the build breaks if they fire. Disable strict-aliasing
# because GCC warns about code that I know is OK.
export CXXFLAGS="-O2 -DDEBUG -Wall -Werror -Wno-strict-aliasing"
# because GCC warns about code that I know is OK. Disable sign-compare because I've fixed more
# sign-compare warnings than probably all other warnings combined and I've never seen it flag a
# real problem.
export CXXFLAGS="-O2 -DDEBUG -Wall -Werror -Wno-strict-aliasing -Wno-sign-compare"
STAGING=$PWD/tmp-staging
......
Markdown is supported
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