I am patching upp an application from iOS 4.2 to 4.3 using new xcode4. With no changes made, except setting iOS to 4.3, I created entitlements and go!

Message I get is:

Undefined symbols for architecture armv6:"function", referenced from:

Ive tried to Clean the project, reinstalling xcode. I uninstalled also the xcode4 demo version. I also tried to set to Optimized armv7.

I would be very happy for some help, I'm stuck. Really.

Thanks very much in advance!

link|improve this question
Where was function referenced from? Does anything look funny in the referenced file? – sarnold Mar 23 '11 at 10:12
Try adding the i386 under Valid Architecture under Targets and Project Build Settings – Hanuman Mar 23 '11 at 10:17
1  
Please include the full text of the error. – android Mar 23 '11 at 10:19
1  
Are you linking in any libraries? Has the library with the symbol "function" been compiled for armv6 architecture? – Max MacLeod Mar 23 '11 at 11:13
Is this an universal application? You might get this error when using some classes that only exists in iPad (such as UISplitviewcontroller). If that is the case, you can solve by weak linking UIKit framework in you project – Felipe Sabino Apr 24 '11 at 6:21
show 1 more comment
feedback

5 Answers

up vote 6 down vote accepted

For this type of error, this is what I typically see:

 Undefined symbols for architecture armv6:
  "_OBJC_CLASS_$_MyCustomController", referenced from:
      objc-class-ref in SomeOtherController.o
ld: symbol(s) not found for architecture armv6

Almost every time I see this error it is caused by hidden/invisible characters in the import statement in SomeOtherController.h or SomeOtherController.m. So, look at both your .h and .m file, find the line that looks like this:

#import "MyCustomController.h"

Delete this line and retype it (do not copy/paste it -- you'll just repaste the offending hidden character).

link|improve this answer
3  
I've also came across this exact issue when I wasn't including some files in the specific build target. – raidfive Jun 7 '11 at 20:08
2  
@raidfive: THANK YOU!! I was having this same issue, and it was caused because for some reason Xcode in it's infinite wisdom decided not to place the .m files for a couple classes into the Compile Sources section of my target. Added them manually and it compiled fine. – einsteinx2 Jul 18 '11 at 6:16
@Answerbot Thanks for your this solution but its not working for me . I got error like this Undefined symbols for architecture armv6: "_OBJC_CLASS_$_CLLocationManager", referenced from: objc-class-ref in MyCLController.o .. Need to solve it urgent .. I have also remove that heder file #import <CoreLocation/CoreLocation.h> .. – Vivek2012 Apr 10 at 5:51
@Vivek2012: I guess you probably need to add the CoreLocation Framework to your project – NicTesla May 21 at 8:26
feedback

Click on your Project name in the navigation window, choose the target you're building against, go to build phases, make sure the one Xcode's telling you that's missing is in there.

link|improve this answer
feedback

Here's how I got this problem:

I added a .h, .m and NIB from another project by dragging them onto my project navigator. Xcode didn't add them to the Build Phases properly.

My solution for this problem:

  • Go to the Target in the navigator menu
  • Click on the "Build Phases" tab
  • Add the .m file to "Compile Sources" (either drag it across, or use the + button)
  • Add the .xib to "Copy bundle resources"
  • Clean and build
link|improve this answer
feedback

I had this problem and I have just solved it. It was a simple typo in the function name (forgot one letter) that caused the problem in my case.

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.