I accidentally deleted my target in xcode.

so i created a new one with the exact same name. in the target settings i again selected the proper codesigning identity

but now i can't compile for the device anymore. as soon as i want to build, i get:

CodeSign build/Release-iphoneos/myApp.app
....somestuff....
/Volumes/XCodeProj/myApp/build/Release-iphoneos/myApp.app: object file format invalid or unsuitable
Connad /usr/bin/codesign failed with exit code 1

I already tried to clean targets. what could cause this problem and how to solve it?

link|improve this question

25% accept rate
please validate the answer below thanks – Rjaibi Mejdi Nov 3 '11 at 10:52
feedback

7 Answers

May also be an issue with your install. Symlinking to the latest codesign_allocate cleared up the issue in my case:

sudo mv /usr/bin/codesign_allocate /usr/bin/codesign_allocate_old
sudo ln -s /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate /usr/bin
link|improve this answer
That was my case. Thank you!! – M Penades Sep 13 '11 at 15:56
3  
+1. Same issue here, only the 4.1 installation didn't install a codesign_allocate whatsoever. While I have both the iOS 5 beta (different dir), I did install the 4.1 SL install most recently. xcode-select also still shows "/Developer". So the symlink alone for me did the trick. Thanks emcmanus. – Scott Corscadden Sep 20 '11 at 1:10
+1. Same issue here – Jennis Oct 22 '11 at 10:59
1  
I didn't have a /usr/bin/codesign_allocate. But I did have the same error as op. Creating the symlink (your 2nd step) fixed it. – August Lilleaas Nov 30 '11 at 14:21
1  
In my case, /usr/bin/codesign_allocate was lost and I could recover it by ln command only. Thanks. – conecon Jan 11 at 9:31
show 5 more comments
feedback

Make sure the 'Executable Name' (CFBundleExecutable) entry in your target's info.plist matches the 'Product Name' specified in your target settings.

link|improve this answer
good,thank you! – HelloWorld Sep 8 '11 at 5:11
Yeap this is the right solution for this problem. – Mahmud Ahsan Sep 16 '11 at 18:09
did it for me. many thanks. – Kenny Lim Nov 19 '11 at 18:01
You saved my day!! Thanks much! – Saurabh Dec 23 '11 at 12:40
This is what did it for me. Any idea why these need to be the same? – rykardo Jan 14 at 7:06
show 1 more comment
feedback

I had the same problem and tried all sorts of build settings GCC4.0, search paths etc etc. It turned out to be nothing to do with the build settings in my case the problem was I put a dot in the target name i.e. I was targeting v3.0 SDK so I called the target Granade3.0.

I started a brand new project named "Grenade3zero", imported the sources from the original, fixed the appdelegate name to match the project name etc. build and go and it loaded first time onto the device and the simulator was also fine when I checked it. Looks like some characters are illegal in target names!

link|improve this answer
You can also just rename the product in the build settings and rename the delegate class. Or, in Xcode, go to Project -> Rename Project… – WTP'-- Jan 30 '11 at 22:17
Thanks Radek, I agree renaming would work but restarting using a valid project t‌​emplate seems to have fixed suspect dubious build settings – Soft Dot IE Jan 31 '11 at 16:06
Happened again after I provisioned with a new keychain, old keychain was visible to xcode and EMcManus's solution sorted the duplicate problem. I then got an invalid object file problem which turned out to be my IPod Device OS was 4.2.1 and I had to target a base sdk in the target settings to the highest version below that - in my case 3.2.1. – Soft Dot IE Feb 21 at 22:18
feedback

Thought I'd add my solution to this problem too... I've been struggling for a couple of weeks with this problem... having checked ALL the solutions above and changing more.

My solution was in the target build settings.

I had put in two options, armv6 and armv7. I changed this back to one single entry of normal and it built!

build settings

link|improve this answer
I tried both emcmanus's and Julio's suggestions and both didn't work for me. But, your's did. Thanks! – Daren Jan 14 at 22:55
feedback

If your app has special characters in the Product Name in the target build settings, remove them.

For example, rename "Mat's app" to "Mats app" and it will build. You can of course have special characters in the display name.

link|improve this answer
feedback

I also had the same problem, and the cause was that my app target was linked to a static library and didn't provide its own source files (all sources were in the library and the app target only provided resources). Once I moved out one of the sources from the library to the app target, it fixed the code sign error.

link|improve this answer
feedback

There are both Xcode3 and Xcode4 installed on my mac.This error happened when I compiled in Xcode3,but not in Xcode4.I don't know why.

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.