revert deleting i386 for simulator

Because simulator of old device type (like 'iPhone 5') needs i386 binary.
If remove i386, it can't launch the app on 'iPhone 5' device.
This commit is contained in:
Watson
2015-01-06 20:54:22 +09:00
parent 102ec05211
commit 30538ace80
2 changed files with 0 additions and 5 deletions

2
NEWS
View File

@@ -7,8 +7,6 @@
* [iOS] Fixed a bug where it couldn't debug with `rake device debug=1' on
device. Now, debugging only support `armv7' in `app.archs['iPhoneOS']'.
(i.e. app.archs['iPhoneOS'] = ['armv7'])
* [iOS] Removed compiling `i386' for iOS simulator in order to reduce compile
time. By default, `x86_64' only will be built for simulator.
* [iOS] Fixed a bug where it could not deploy app to iOS 8.2 beta 3 device.
* [iOS] Fixed a bug where it could not deploy app which contained Watch app.
* [OSX] Fixed a bug where NSString#initWithXXX would trigger a crash by double

View File

@@ -64,9 +64,6 @@ namespace :build do
desc "Build the simulator version"
task :simulator do
# No longer build for i386 by default.
App.config.archs['iPhoneSimulator'].delete('i386') if App.config.archs['iPhoneSimulator'].include?('x86_64')
pre_build_actions('iPhoneSimulator')
App.build('iPhoneSimulator')
end