I'm considering dropping 32-bit support for in favor for Automatic Reference Counting (which is only supported for 64 bit binaries).

I'd like to avoid these two scenarios with the Mac App Store:

For a user of an old 32-bit Mac:

  1. who did purchase the previous version with 32-bit support: Will they see an update message for the app in the Mac App Store? If so, the (now 64 bit only) update would not work for him/her.

  2. who has not purchased the app before: will they be able to purchase the app although it will not run on their system?

ARC 64 bit only: http://developer.apple.com/library/mac/#releasenotes/ObjectiveC/RN-TransitioningToARC/_index.html#//apple_ref/doc/uid/TP40011226

EDIT: I found one occasion of somebody being able to download a 64 bit only app to a 32 bit MacBook and being presented with an error message "Your purchase could not be completed". In this case it was a free app. I wonder when this message would pop up for a paid app (before or after the payment).

http://www.linethirteen.com/blog/2011/01/mac-app-store-32-bit-vs-64-bit/

link|improve this question

feedback

3 Answers

I've also found out that ARC requires 64bit processors. However, I managed to build a fat binary where the 64bit version uses ARC and the 32bit version uses the garbage collector. To do this I had to do the following:

  • set up a 32bit only target that uses GC
  • set up a 64bit only target that uses ARC
  • add the 32bit target as a dependency to the 64bit target
  • add a custom build phase with a shell script that uses lipo to assemble a fat binary from the binaries in the two targets

Both targets use the same source, but a few #ifdef __OBJC_GC__ statements were necessary. I did have to give up synthesized ivars for backward compatibility :(

link|improve this answer
feedback

I don't know what App Store will do (and it's probably subject to change, anyway), but if the app does get delivered to 32-bit customers, you can work around the problem in this way:

  1. Make your app 64-bit only.
  2. Make a second app that is 32-bit only and does nothing but show an alert message.
  3. Build all of the resources from the second app into the first (i.e., add them to both targets).
  4. Make the second target a dependency of the first, and use lipo in a shell script phase in the first target to assimilate the 32-bit binary into the 64-bit binary.

You'll then have a Universal Binary (or “fat binary”) that is your real application on 64-bit machines, and the “please upgrade your Mac” application on 32-bit machines.

link|improve this answer
4  
That’s not a good idea. The App Store will indicate that you app supports 32-bit because it does contain a 32-bit image in the Universal Binary. That way you’re sure to confuse users. – gcbrueckmann Oct 23 '11 at 17:30
@gcbrueckmann: That brings us back to Mark's original question: “would people using 32 bit hardware be able to purchase a 64 bit only application?” If so, it's best for them to be told why they can't use it, and if he has to do that himself (and wouldn't get rejected for it), then he should. If 32-bit users would be unable to purchase in the first place, then yeah, just go 64-bit-only. – Peter Hosey Oct 23 '11 at 19:49
Lacking a 32-bit-only Mac I can’t verify this, but I’d guess that even if purchasing it was possible, trying to launch a 64-bit-only app on a 32-bit-only Mac should prompt Launch Services to show an alert like the one shown when you try to launch a, say, Lion-only app on Snow Leopard. – gcbrueckmann Oct 23 '11 at 21:12
@gcbrueckmann That's part of the problem: Let's assume somebody would see the error message they would already have purchased the app. I can't imagine that the App Store doesn't take care of this, but it would be nice to know for sure. – Mark Oct 24 '11 at 5:39
Then we agree on this. I was only suggesting that there isn’t anything you can do in addition to what the App Store and OS X already do for you (and that adding faux 32-bit support would only unnecessarily complicate things). – gcbrueckmann Oct 24 '11 at 10:15
feedback

Correction:

  • ARC is available in 64-Bit & 32 Bit apps under Snow Leopard (10.6).
  • On Mac OS X Lion (10.7) however you can only run 64-Bit ARC apps.

You can and should still create a universal binary that includes 32-Bit and 64-Bit executables. And you will have to build your ARC enabled app under Lion because Xcode 4.2 for Snow Leopard doesn't include the Mac OS X 10.7 SDK.

The "64-Bit apps only" requirement on Lion makes sense: Lion is a 64-Bit operating system. There may still be a fallback 32-Bit kernel available that you can enable (ie press & hold 3 and 2 while booting or similar "hack") but the 32-Bit Kernel in Lion is not the standard mode of operation and shouldn't be considered.

You won't have a problem on the Mac App Store, because according to Apple:

Your Mac must have an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor to run Lion.

Those are all 64-bit capable processors, and Lion will run in 64-Bit mode on these. While apparently it's possible to install Lion on systems with unsupported processors I wouldn't worry about it. This isn't your problem, at best it's Apple's, and in most cases the user's (for installing Lion regardless).

link|improve this answer
I've set up a test project using Xcode 4.2 on Lion, the 10.7 SDK, deployment target 10.6. ARC disabled by default and enabled for one file via compiler flag (-fobjc-arc). When I try to compile it fails with: -fobjc-arc is not supported with fragile abi – Mark Oct 25 '11 at 6:36
over here you said that ARC + 32bit is a no-go (on Lion). If I target 10.6 and 10.7, how would I build a universal binary if 32 bit + ARC won't work on Lion? stackoverflow.com/questions/6965990/… – Mark Oct 25 '11 at 6:42
Apple themselves say that you need the modern runtime to support ARC, which on the Mac is only available in 64-bit applications on Snow Leopard and Lion. I don't believe there's a way to build a 32-bit ARC-enabled Mac application. – Brad Larson Oct 25 '11 at 18:35
I am confused. I'm seeing errors with 32 bit ARC builds but the documentation states otherwise: "This means you need a Lion system to build an ARC application that runs on Snow Leopard." There's no mention of 32-Bit apps for Snow Leopard. Hmmm ... – LearnCocos2D Oct 25 '11 at 18:58
1  
Read Chris Lattner's response here for the definitive take on OS support for ARC: devforums.apple.com/thread/126066?tstart=0 . Quoting him: 'ARC is supported on Mac OS 10.6 and later, but only in 64-bit. Weak pointers are 10.7 and later. 32-bit Mac OS X use the "classic" Objective C runtime, which is missing many features.' – Brad Larson Oct 28 '11 at 16:44
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.