diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-27 17:26:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-27 17:26:51 +0100 |
| commit | 9c135ad2632b4cc754e0233c03b7a69dcfafe377 (patch) | |
| tree | b4a4310091d5962a43ab71428f26b0a8d523182d /modules | |
| parent | daa50b28f2171a981eb49ed8032cd92dd998f8ca (diff) | |
| parent | 95e96947f6c4e96d15b269db7a27a4a772d86b09 (diff) | |
Merge pull request #24625 from akien-mga/ios-sim-x86_64
SCons: Drop ios_sim option forcing x86, simulator needs x86_64
Diffstat (limited to 'modules')
| -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' |