saman01
saman01

Reputation: 1004

Xcode ignores my frameworks

I get the following error for all the frameworks I use:

ignoring file /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0 (9A334)/Symbols/System/Library/Frameworks/UIKit.framework/UIKit, file was built for unsupported file format which is not the architecture being linked (i386).

I am using these frameworks in other projects and they all work. Just this one is causing this issue. Project and target settings seem to be the same.

Any help?

Thanks

Upvotes: 0

Views: 456

Answers (1)

Joachim Isaksson
Joachim Isaksson

Reputation: 180867

The error message states that you're including a framework for ARM (iOS) when compiling for i386 (Mac OS X).

That will not work.

Upvotes: 1

Related Questions