diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-27 13:42:15 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-27 14:11:13 +0100 |
commit | 95e96947f6c4e96d15b269db7a27a4a772d86b09 (patch) | |
tree | 6aaf4c064e5302eeb156116ac5fbe42b7005534f /modules/webm/libvpx | |
parent | e3e36c963f938abbaaa1c76b47df5f46ccaf073c (diff) |
SCons: Drop ios_sim option forcing x86, simulator needs x86_64
Diffstat (limited to 'modules/webm/libvpx')
-rw-r--r-- | modules/webm/libvpx/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webm/libvpx/SCsub b/modules/webm/libvpx/SCsub index 348de485be..84e986630d 100644 --- a/modules/webm/libvpx/SCsub +++ b/modules/webm/libvpx/SCsub @@ -271,7 +271,7 @@ if env["platform"] == 'uwp': else: import platform is_x11_or_server_arm = ((env["platform"] == 'x11' or env["platform"] == 'server') and (platform.machine().startswith('arm') or platform.machine().startswith('aarch'))) - is_ios_x86 = (env["platform"] == 'iphone' and env["ios_sim"]) + is_ios_x86 = (env["platform"] == 'iphone' and ("arch" in env and env["arch"].startswith('x86'))) is_android_x86 = (env["platform"] == 'android' and env["android_arch"] == 'x86') if is_android_x86: cpu_bits = '32' |