vote up 2 vote down star
3

Hi,

I'm getting this error when building my iPhone application:

ld: warning: in /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk/System/Library /Frameworks/UIKit.framework/UIKit, missing required architecture i386 in file

It goes the same for all the frameworks in my app. It's very weird since this was not happening earlier.

Any help would be greatly appreciated. Gabe

flag
Did this happen after you installed Snow Leopard and the new iPhone SDK (Xcode 3.2)? – avocade Sep 28 at 13:45

13 Answers

vote up 0 vote down

Thank You so much! I am really amazed how you guys figure that all out! I already thought that I'd lost all my work, since I was stupid enough not to make a backup!

Sean Roehnelt rules!!!!!!!

Thanx, Greg

link|flag
vote up 0 vote down

The editing of the project.pbxproj file works really well. What I didn't know was that the file its self is located inside the .xcodproj file. that file is a "package" if you right click on it (ctrl click for one button mice) and select "Show Package Contents" form the pop-up menu you will then be able to edit the project.pbxproj file. Thanks to everyone who helped figure this out!

link|flag
vote up 0 vote down

I just want to let you know that In my case, I was having the same problem, I realized that I had an older Xcode folder called Xcode3.1.3 I just rename it because it was an older version and that did the magic for me.

link|flag
vote up 0 vote down

Thank you VERY much! Sean's fix saved my day.

link|flag
vote up 0 vote down

John Cromartie's answer worked for me, Thanks a lot John.

link|flag
vote up 0 vote down

As mentioned by somebody here, Reinstalling the SDK doesn't help, So I would suggest others not to waste time on that.

link|flag
vote up 0 vote down

Hello, I just wanted to mention that in XCode if you go to "Edit Project Settings" and find "Search Paths" There is a field for "Framework Search Paths". Updating this should fix the problem, without having to hack the project file!

Cheers!

Jesse

link|flag
vote up 0 vote down

Jonh, Exelent your solution hit mine perfect now all works in simulator and device.

Thanks a lot

link|flag
vote up 0 vote down

Congratulations and thanks for posting the fix, it just saved me hours of troubles. Renaud

link|flag
vote up 7 vote down

I had this same problem, and the solution turned out to be an easy fix. Backup then open project.pbxproj (located inside your project file bundle) in TextMate or TextEdit and search for the section titled "/* Begin XCBuildConfiguration section */". Look for a key named FRAMEWORK_SEARCH_PATHS and delete it and it's contents (once per build configuration, so I removed it in two places). Here is an example of what I deleted:

FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk/System/Library/Frameworks\"",);

My project now build for both the iPhone device and the iPhoneSimulator.

  • Sean Roehnelt
link|flag
I can verify that this works as described. It seems Xcode can easily get out of touch with its metadata when moving Xcode projs between different computers; in this case with one having 3.0 and Leopard, and the other 3.1 and Snow Leopard installed. FRAMEWORK_SEARCH_PATHS metadata shows as blank in Build Settings while the actual project.pbxproj has stuff in it. – avocade Sep 28 at 13:44
Agreed FRAMEWORK_SEARCH_PATHS also showed as blank in the build settings for me as well. However, hand-editing the project.pbxproj file as described fixed the problem. – Alasdair Allan Oct 5 at 13:59
Thank you very much!!! – goo Oct 7 at 6:48
Thank you! Was banging my head against the wall trying to figure this out. – iworkinprogress Oct 12 at 23:17
Thanks mate...spent almost two hours to find a cause. – Amit Vaghela Nov 3 at 1:05
vote up 2 vote down

What has happened here is that Xcode has mysteriously added a "Framework Search Paths" entry that points to a particular iPhone device SDK. For example, mine was recently set to:

$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/System/Library/Frameworks

This leads the compiler to find frameworks of the incorrect architecture. Removing any values under the "Framework Search Paths" key in your target's build settings will resolve the issue.

link|flag
vote up 1 vote down

Though it is possible that something got deleted, it has been my experience that something gets screwed up in the project file. I have yet to pin down what that "something" is. I've had similar issues when the SDK installation is just fine. There are a couple of options.

First, add all of your files to a new project. This seems to usually work. Kind of a pain, though.

Second, you can right-click project in XCode/Get Info/Build/Library Search Paths. Add new paths similar to /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.sdk/usr/lib. Add appropriate versions of that string for each version (2.2.1, etc) and platform (simulator or iPhoneOS). Perform a similar action for Framework Search Paths if frameworks are your problem.

Third, which is more work but more reliable, is to open project.pbxproj from within MyProject.xcodeproj (Textmate is good for this). Look for "/* Begin XCBuildConfiguration section */", then "LIBRARY_SEARCH_PATHS" and "FRAMEWORK_SEARCH_PATHS". Add or modify the paths as appropriate, and save the file.

In any case, a pain in the butt, and I'd sure like to pin-point the cause because I've had this happen a couple of times. Project builds fine, then just up and refuses to do so with what seems to be little reason.

link|flag
I'm going to just start a fresh project. Oh wells. – gabeshahbazian Sep 23 at 0:59
You can fix the "Frameworks Search Paths" build settings from a target's info panel. – John Cromartie Sep 23 at 16:48
vote up 0 vote down

Run the file command on the framework from Terminal:

file /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk/System/Library /Frameworks/UIKit.framework/UIKit

You should get back a message telling you which architectures the UIKit binary is compatible with. If you don't see "i386" listed, then you've somehow managed to remove the i386 version of UIKit, which will mean that you can't build for the simulator.To fix that, you'll have to re-install the SDK.

If you get some other error, hopefully it'll help you figure out what the actual problem is.

link|flag
Reinstalled the sdk and I still get the same exact build error. – gabeshahbazian Sep 22 at 2:47

Your Answer

Get an OpenID
or

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