Reputation: 13
With XCode4.5 and armv7+armv7s arch, the executable size increased from 3MB to 7MB. Rebuild with armv7 only, the binary size is back to 3MB.
Does anyone see the same increase? Is this an expected result?
Upvotes: 1
Views: 222
Reputation: 106127
You were previously building for one arch, now you are building for two; this means that roughly twice as much code is generated, so a 2x increase in binary size shouldn't be a surprise.
Upvotes: 6