enable arm64 again, remove armv7s

This commit is contained in:
Laurent Sansonetti
2014-11-05 14:04:04 +01:00
committed by Watson
parent fc73bfeefb
commit 3df66a1769

View File

@@ -52,10 +52,9 @@ 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
end