Merge pull request #7123 from zaps166/webm_iphone_x86
WebM: Fix iPhone x86 compilation
This commit is contained in:
commit
9df47f2c69
1 changed files with 4 additions and 3 deletions
|
@ -263,14 +263,15 @@ if env["platform"] == 'uwp':
|
|||
else:
|
||||
webm_cpu_x86 = True
|
||||
else:
|
||||
is_ios_x86 = (env["platform"] == 'iphone' and env["ios_sim"] == "yes")
|
||||
is_android_x86 = (env["platform"] == 'android' and env["android_arch"] == 'x86')
|
||||
if is_android_x86:
|
||||
cpu_bits = '32'
|
||||
if osx_fat:
|
||||
webm_cpu_x86 = True
|
||||
else:
|
||||
webm_cpu_x86 = (cpu_bits == '32' or cpu_bits == '64') and (env["platform"] == 'windows' or env["platform"] == 'x11' or env["platform"] == 'osx' or env["platform"] == 'haiku' or is_android_x86)
|
||||
webm_cpu_arm = env["platform"] == 'iphone' or env["platform"] == 'bb10' or (env["platform"] == 'android' and env["android_arch"] != 'x86')
|
||||
webm_cpu_x86 = (cpu_bits == '32' or cpu_bits == '64') and (env["platform"] == 'windows' or env["platform"] == 'x11' or env["platform"] == 'osx' or env["platform"] == 'haiku' or is_android_x86 or is_ios_x86)
|
||||
webm_cpu_arm = (not is_ios_x86 and env["platform"] == 'iphone') or env["platform"] == 'bb10' or (not is_android_x86 and env["platform"] == 'android')
|
||||
|
||||
if webm_cpu_x86:
|
||||
import subprocess
|
||||
|
@ -308,7 +309,7 @@ if webm_cpu_x86:
|
|||
else:
|
||||
if env["platform"] == 'windows' or env["platform"] == 'uwp':
|
||||
env_libvpx["ASFORMAT"] = 'win'
|
||||
elif env["platform"] == 'osx':
|
||||
elif env["platform"] == 'osx' or env["platform"] == "iphone":
|
||||
env_libvpx["ASFORMAT"] = 'macho'
|
||||
else:
|
||||
env_libvpx["ASFORMAT"] = 'elf'
|
||||
|
|
Loading…
Reference in a new issue