Use -Wno-sign-compare to make recent GCC happy

This commit is contained in:
Fangrui Song 2017-11-20 17:31:14 -08:00 committed by Jacob Dufault
parent 030e63f15c
commit 7d06ff212f

View File

@ -136,7 +136,7 @@ def build(bld):
bld.program( bld.program(
source=cc_files, source=cc_files,
cxxflags=['-g', '-O3', '-std=c++11', '-Wall', '-Werror'], cxxflags=['-g', '-O3', '-std=c++11', '-Wall', '-Wno-sign-compare', '-Werror'],
includes=[ includes=[
'third_party/', 'third_party/',
'third_party/doctest/', 'third_party/doctest/',