When I try to run my application in the iOS 4.3 simulator (Xcode 4.2), I crash when I hit @autoreleasepool{}, with:

dyld: lazy symbol binding failed: Symbol not found: _objc_autoreleasePoolPush

I looked around, and I see the workaround is to add libarclite_iphoneos.a. There's a version of this for the simulator, too, as libarclite_iphonesimulator.a.

I need to add both libraries to my project to make it run on both the simulator and hardware. But whichever I build, it complains that the other library is for an unsupported architecture.

For example, building for simulator:

ld: warning: ignoring file /Developer-4.2/Platforms/iPhoneOS.platform/
Developer/usr/lib/arc/libarclite_iphoneos.a, missing required architecture
i386 in file

How do I fix both of these simultaneously? Or should I just stick with the old NSAutoreleasePool syntax for now?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You can use the Other Linker Flags build setting to link in the library, and specialize the value based on whether it's "Any iOS" or "Any iOS Simulator".

link|improve this answer
This seems like it should work. I'm working on it. :) – Steven Fisher Oct 17 '11 at 19:49
1  
@StevenFisher: I'm rather mystified as to why this is necessary in the first place. Clang should be linking in the appropriate library for you when your deployment target is set pre-5.0. – Kevin Ballard Oct 17 '11 at 20:00
Good point. I did some further testing. It looks like it's a problem when compiling for the simulator only. When compiling for the device, it automatically includes the device. I had to add ${PLATFORM_DEVELOPER_USR_DIR}/lib/arc to LIBRARY_SEARCH_PATHS and -larclite_iphonesimulator to OTHER_LDFLAGS[sdk=iphonesimulator*][arch=*], but there was no need to do a setting for the iOS hardware. So this is almost certainly a bug. – Steven Fisher Oct 17 '11 at 20:23
I haven't found a way to add this build setting 'OTHER_LDFLAGS[sdk=iphonesimulator*][arch=*]', could anyone tell me how to do that? – Thiago Peres Dec 25 '11 at 6:15
feedback

After a trials like clean, clean folder, resetting iPhone Simulator and even a restart, I changed the IPHONE_DEPLYMENT_TARGET on the target build setting down from iOS 5.0 to iOS 4.2. Worked.

link|improve this answer
I will re-test, perhaps it's been fixed. Thanks. – Steven Fisher Dec 26 '11 at 4:06
@amosel: which xcode version are you using? 4.2. or 4.2.1? – Johannes Rudolph Dec 29 '11 at 11:03
@JohannesRudolph I use 4.2 Build 4D199 – amosel Dec 31 '11 at 4:57
This also worked for me when I suddenly started to see these errors after switching my deployment target to 4.2.1... – Kendall Helmstetter Gelner Feb 17 at 18:06
Here is one further case where this can happen. I had specified a custom value (4.2.5) in IPHONEOS_DEPLOYMENT_TARGET in the project settings and not one of the caned values. This seems to have confused the linker into not linking the libarclite library. Changing this to a canned value of 4.3 seems to have fixed the problem. – Jon Steinmetz Apr 10 at 2:15
feedback

You can also merge the two static libraries to one universal library. Go to the Terminal and say

lipo -create -output /where/you/want/it/libarclite_universal.a /Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/arc/libarclite_iphoneos.a /Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/arc/libarclite_iphonesimulator.a

You can verify the resulting file by saying (in Terminal)

file /where/you/put/it/libarclite_universal.a

It should output:

libarclite_universal.a: Mach-O universal binary with 3 architectures
libarclite_universal.a (for architecture i386):current ar archive random library
libarclite_universal.a (for architecture armv6):current ar archive random library
libarclite_universal.a (for architecture armv7):current ar archive random library

Since this lib is linked statically, your final app wont grow because of the included sim library since only whatever is needed by your app will get linked into your final app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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