revert enabling arm64 by default

This commit is contained in:
Laurent Sansonetti
2014-11-05 15:18:25 +01:00
parent 6cdde0bd76
commit 92b5b94bf6

View File

@@ -52,8 +52,11 @@ module Motion; module Project;
def archs
@archs ||= begin
# By default, do not build with 64-bit, as it's still experimental.
# No longer build for armv7s by default.
archs = super
archs['iPhoneSimulator'].delete('x86_64')
archs['iPhoneOS'].delete('arm64')
archs['iPhoneOS'].delete('armv7s')
archs
end