зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1223312 - Part 1: Enable webrtc on MIPS64 platforms by default. r=drno, r=jesup, r=ted
--HG-- extra : rebase_source : 4bda2b90dc957d93e92edc6f36d10997608617d4
This commit is contained in:
Родитель
23d394affc
Коммит
adc74c715f
|
@ -132,6 +132,10 @@
|
|||
#define ARCH_CPU_SPARC_FAMILY 1
|
||||
#define ARCH_CPU_SPARC 1
|
||||
#define ARCH_CPU_32_BITS 1
|
||||
#elif defined(__mips64) && defined(__LP64__)
|
||||
#define ARCH_CPU_MIPS_FAMILY 1
|
||||
#define ARCH_CPU_MIPS 1
|
||||
#define ARCH_CPU_64_BITS 1
|
||||
#elif defined(__mips__)
|
||||
#define ARCH_CPU_MIPS_FAMILY 1
|
||||
#define ARCH_CPU_MIPS 1
|
||||
|
|
|
@ -1156,7 +1156,7 @@ def webrtc_default(target):
|
|||
os_match = True
|
||||
|
||||
cpu_match = False
|
||||
if (target.cpu in ('x86_64', 'arm', 'aarch64', 'x86', 'ia64') or
|
||||
if (target.cpu in ('x86_64', 'arm', 'aarch64', 'x86', 'ia64', 'mips32', 'mips64') or
|
||||
target.cpu.startswith('ppc')):
|
||||
cpu_match = True
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче