Bug 1738845 - Add webrtc configs for arm and ppc64 linux. r=mjf

Adding arm alone breaks ppc64el.

Differential Revision: https://phabricator.services.mozilla.com/D134738
This commit is contained in:
Mike Hommey
2022-06-21 20:03:56 +00:00
parent 9f3e866b5d
commit 202dd1e9b5
379 changed files with 8615 additions and 2337 deletions

View File

@@ -656,10 +656,12 @@ def main():
target_cpus = ["x64"]
if target_os in ("android", "linux", "mac", "win"):
target_cpus.append("arm64")
if target_os == "android":
if target_os in ("android", "linux"):
target_cpus.append("arm")
if target_os in ("android", "linux", "win"):
target_cpus.append("x86")
if target_os == "linux":
target_cpus.append("ppc64")
for target_cpu in target_cpus:
vars = {
"host_cpu": "x64",