зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1005449 - Use CPU_ARCH for unknown target_arch in gyp r=mshal f=landry
This commit is contained in:
Родитель
cc40dbbc9d
Коммит
523f850215
|
@ -87,14 +87,10 @@ gyp_vars['OS'] = flavors[os]
|
|||
|
||||
arches = {
|
||||
'x86_64': 'x64',
|
||||
'arm': 'arm',
|
||||
'x86': 'ia32',
|
||||
'ppc': 'ppc',
|
||||
'ppc64': 'ppc',
|
||||
'ia64': 'ia64',
|
||||
}
|
||||
|
||||
gyp_vars['target_arch'] = arches[CONFIG['CPU_ARCH']]
|
||||
gyp_vars['target_arch'] = arches.get(CONFIG['CPU_ARCH'], CONFIG['CPU_ARCH'])
|
||||
|
||||
if CONFIG['ARM_ARCH']:
|
||||
if int(CONFIG['ARM_ARCH']) < 7:
|
||||
|
|
Загрузка…
Ссылка в новой задаче