Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
1–10 of 142 posts
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#2Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#3Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#4Note that the size increase is in the _bitcode_ portion of the binary. This slice is stripped from the binary before it makes it to the user's device. This means the size increase is merely an inconvenience during the development process, and has no impact on the size of apps as users see them.
Binary sizes in iTunes connect (from our Xcode 8.3 build) all were 2x-3x larger depending on device.
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#5Bitcode also now deliberately trades off size vs speed and includes indexes used for LTO, etc. They could be including those.
You should almost always expect bitcode to get beat by "llvm-dis|xz", because the goal of bitcode is not to be the most compact possible format, but instead, a compact format the compiler can use effectively :)
Now, if actual on-device binary sizes increased, my guesses would be:
1. it now includes bitcode, or another architecture, in the binary (which would be interesting)
2. Something has gone horribly horribly wrong :P Really, speaking as a guy whose org maintains the toolchains for platforms like this, there's a 0% chance we wouldn't notice a 2x-3x size increase.
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#6Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#7Note that the size increase is in the _bitcode_ portion of the binary. This slice is stripped from the binary before it makes it to the user's device. This means the size increase is merely an inconvenience during the development process, and has no impact on the size of apps as users see them.
With bitcode, app thinning and what not in the mix the Xcode build artifact is so much different from what's actually being downloaded it's hard to tell if this radar has real world implications for anyone but the developer uploading the build to apple. Still interesting, and potentially annoying though.
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#8Note that the size increase is in the _bitcode_ portion of the binary. This slice is stripped from the binary before it makes it to the user's device. This means the size increase is merely an inconvenience during the development process, and has no impact on the size of apps as users see them.
Unfortunately this doesn't seem to be the case. Binary sizes in iTunes connect (from our Xcode 8.3 build) all were 2x-3x larger depending on device.
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#9Note that the size increase is in the _bitcode_ portion of the binary. This slice is stripped from the binary before it makes it to the user's device. This means the size increase is merely an inconvenience during the development process, and has no impact on the size of apps as users see them.
Re: Xcode 8.3 produces binaries 3x larger than Xcode 8.2.1
#10Note that the size increase is in the _bitcode_ portion of the binary. This slice is stripped from the binary before it makes it to the user's device. This means the size increase is merely an inconvenience during the development process, and has no impact on the size of apps as users see them.
I'm not well versed in the details of iOS development. Why is this inconvenient during development? Is the bitcode portion copied to your device and is a slow process?