Merge pull request #269 from KyleSanderson/wnoerrorsign

Add Wno-error=sign-compare for gcc to Compiler. r=dvander
This commit is contained in:
Kyle Sanderson 2015-03-05 20:05:06 -08:00
commit d0d0ea5051

View File

@ -53,6 +53,7 @@ compiler.sourcedeps += packed_includes
if compiler.cc.behavior == 'gcc':
compiler.cflags += ['-Wno-format']
compiler.cflags += ['-Wno-error=sign-compare']
compiler.c_only_flags += ['-std=c99']
if builder.target_platform == 'linux':
compiler.postlink += ['-lm']