clang-analyze: force 32bit compile

This commit is contained in:
Grissiom 2014-12-16 12:10:48 +08:00
parent c045281ee2
commit ee59452ee5
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def generate(env):
env['AR'] = 'true'
env['LINK'] = 'true'
env['CFLAGS'] = ['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding']
env['CFLAGS'] = ['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding', '-m32']
env['LINKFLAGS'] = '-Wl,--gc-sections'
env['ARFLAGS'] = '-rc'