diff options
Diffstat (limited to 'skia/SConscript')
-rw-r--r-- | skia/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/skia/SConscript b/skia/SConscript index e76aaf9..101e202 100644 --- a/skia/SConscript +++ b/skia/SConscript @@ -61,7 +61,10 @@ if env['PLATFORM'] == 'win32': '/wd4800', ], ) - +elif env['PLATFORM'] == 'posix': + if '-Wall' in env['CCFLAGS']: + # We're not responsible for bad warning hygiene in this third party code. + env['CCFLAGS'].remove('-Wall') input_files = [ 'animator/SkTime.cpp', |