up vote 1 down vote favorite
share [g+] share [fb]

I've created a new App and want to test it in a release version. So I copied the Growl Framework to my project folder and added into XCode.

Then I copied the new files in the target in my project and copied the Growl.framework to the new "Copy Files" Framework folder in "Targets". When I debug my project, it's all right, but if I change the version to "Release" and then Build, there is the Red "1" on my XCode icon in the Dock. I dont know why this error comes; I've searched in Google but I can't find anything.

Can anyone Help me please?! Here is the Picture of my Copied Files:

XCode

link|improve this question

47% accept rate
feedback

3 Answers

Try ordering the Copy Files phase above the link phase.

When i debug my Project, its all right, but if i change the Version to "Release" and than Build -> there is the Red "1" on my XCode icon in the Dock,

Well, what does the error say?

link|improve this answer
The error is not visible, in the Debugger, there is no error just the 1 on my Icon – ahmet2106 Jan 7 '10 at 19:24
The error is a build error, not a run error. Thus, you need to look in the Build Log, not the Debugger. – Peter Hosey Jan 7 '10 at 19:34
Sorry, forgot it: pbxcp: warning: couldn't strip: /Users/ahmet/Desktop/Release/TaskApp.app/Contents/Frameworks/Growl.framework/Ver‌​sions/A/Growl: No such file or directory – ahmet2106 Jan 7 '10 at 19:42
That's a warning, not an error. Even so, like I said, move the Copy Files phase above the Link Binary with Libraries phase. – Peter Hosey Jan 7 '10 at 19:43
The error is still coming, but heres the error now: qkpic.com/95cec – ahmet2106 Jan 7 '10 at 19:53
show 2 more comments
feedback

alt text

"malformed object: Unknown load command 5"

This usually indicates that you have a binary that was built on a later version of Mac OS X (e.g. SnowLeopard) and you're trying to link it on an earlier version of Mac OS X (e.g. 10.5 Leopard).

Ensure you have a correct version of the Growl framework for your development environment and OS.

link|improve this answer
1  
Reading your answer reminded me that there were, indeed, problems using version 1.2 of the Growl framework on Leopard, because we had its deployment target set to 10.6 for x86_64 (oops). We fixed it and released a 1.2.1 version last month: code.google.com/p/growl/downloads/… @ahmet2106: use that. – Peter Hosey Jan 8 '10 at 10:39
@Peter Hosey This does not realy change something. But I think you both are right, it must be something with my Version: XCode 3.1.4 and Mac 10.5.6 For this I will buy me Snow Leopard -.- I've no other chance becaute the Framework 1.2.1 doesn't change anything in my Project, dont know why... – ahmet2106 Jan 8 '10 at 15:06
feedback

I can manually copy the growl.framework into the /Frameworks/ folder in my .app File, but is this a good way?

Or should i research this Problem again? But then I can Build the Release Version...

link|improve this answer
No. You'll find manually copying the Growl framework for every clean build to be a pain in the butt. – Peter Hosey Jan 7 '10 at 22:37
feedback

Your Answer

 
or
required, but never shown

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