Bug 984076 - Suppress clang and gcc warnings in third-party code: sqlite3. r=mak

This commit is contained in:
Chris Peterson 2014-03-15 23:13:40 -07:00
parent 91c22489aa
commit e8af59cd01

View File

@ -73,3 +73,10 @@ if CONFIG['SOLARIS_SUNPRO_CC']:
if CONFIG['OS_ARCH'] == 'WINNT':
RCFILE = 'sqlite.rc'
RESFILE = 'sqlite.res'
# Suppress warnings in third-party code.
if CONFIG['GNU_CC']:
CFLAGS += [
'-Wno-sign-compare',
'-Wno-type-limits',
]