Set default arch to 64bits for osx platform

pull/235/head
lzubiaur 2019-02-12 08:32:26 +09:00
parent 2a4e82b77e
commit e0295d7cd4
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if env['platform'] == 'windows':
opts.Update(env)
is64 = False
if (env['TARGET_ARCH'] == 'amd64' or env['TARGET_ARCH'] == 'emt64' or env['TARGET_ARCH'] == 'x86_64'):
if (env['platform'] == 'osx' or env['TARGET_ARCH'] == 'amd64' or env['TARGET_ARCH'] == 'emt64' or env['TARGET_ARCH'] == 'x86_64'):
is64 = True
if env['bits'] == 'default':
env['bits'] = '64' if is64 else '32'