Bug 1698669 - Fix gyp target_arch for little-endian powerpc64. r=firefox-build-system-reviewers,mhentges

gyp files expect something different than what we currently feed them.

Differential Revision: https://phabricator.services.mozilla.com/D112144
This commit is contained in:
Mike Hommey 2021-04-16 01:01:11 +00:00
Родитель 3b212b0272
Коммит dd1bea60ed
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -32,6 +32,7 @@ arches = {
'x86_64': 'x64',
'x86': 'ia32',
'aarch64': 'arm64',
'ppc64': 'ppc64le' if CONFIG['TARGET_ENDIANNESS'] == 'little' else 'ppc64',
}
gyp_vars['host_arch'] = arches.get(CONFIG['HOST_CPU_ARCH'], CONFIG['HOST_CPU_ARCH'])