I am getting this error after adding the libxml2.2.dylib file

 Linking /Users/Biranchi/Desktop/Funmovies TabBarController/build/Debug-iphonesimulator/funmovies.app/funmovies (1 error)
 in /Developer/Platforms/iphoneOS.platform/Developer/SDKs/iphoneOS3.0.sdk/lib/libobjc.A.dylib, missing required architecture i386 in file

Command /XCode3.1.4/platforms/iphoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

What is this error due to ??

All suggestions are appreciated.

Thanks Biranchi

link|improve this question

80% accept rate
feedback

8 Answers

up vote 1 down vote accepted

Got the same error, now even when I`ve deleted libxml2 from project error still here :) This sh**y XCode wrote this:

LIBRARY_SEARCH_PATHS = (
+                    "$(inherited)",
+                    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib,
+                );

into project`s config file "project.pbxproj" in "MyProj.xcodeproj".

You can change this path by hands to something like:

LIBRARY_SEARCH_PATHS = (
+                    "$(inherited)",
+                    /Developer/Platforms/iPhoneSimulatorOS.platform/Developer/SDKs/iPhoneSimulatorOS3.0.sdk/usr/lib,
+                );

But do not forget to change it back when compile into device. I`ll try to find more simple way to resolve this problem.

link|improve this answer
feedback

Make sure you import with correct extension.

I got the error when I by mistake wrote #import "AClass.m" instead of #import "AClass.h" :-)

link|improve this answer
feedback

I had to remove this library libz.1.2.3.dylib and add this one libz.1.2.5.dylib. After that it compiled fine.

link|improve this answer
I had the same issue, and this sorted it. Thanks @mracoker. – Ben Clayton Oct 17 '11 at 8:38
feedback

I had a similar problem when building a project but this time with the file timbreID.c

arm-apple-darwin10-gcc-4.2.1: timbreID.c: No such file or directory
Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

After several attempts I finally looked into the 'Targets' on my XCode project and realized that the file timbreID.c was red (= not found). I right-clic on it and chose the new path manually.

After that: build succeeded!!

link|improve this answer
I also solved a similar error by correcting incorrect targets. – Gorgando Feb 21 at 20:17
feedback

Try Product -> Clean. Worked for me.

link|improve this answer
feedback

I had the same problem and I went on checking the target info

In the library search paths there was this entry, "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0.sdk/usr/lib"

I removed it and the app WORKED!!!

link|improve this answer
feedback

Try to issue the failed command from the command line. There, you will see the stderr output that is not shown via GUI.

link|improve this answer
how should we issue the failed command from the command line? – Fossli Sep 13 '11 at 13:15
feedback

just remove the libz1.2.3 and add the libz1.2.5 library to your build phase.

link|improve this answer
i use this and solve that issue. – AppleIosPandi Mar 5 at 9:43
feedback

protected by Tim Post Apr 2 at 7:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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