In Xcode 3.2.5 I use "Build And Archive" to create an IPA file without any problems. How can I do that in Xcode 4? I think I have to use "Product -> Archive", but I get over 100 error messages in the three20 framework. Most are "No such file or directory". ("Product -> Build For -> Build For Archiving" works. No errors.)
For example, this is the first error message:
../scripts/Protect.command: line 23: cd: /Users/[USERNAME]/Library/Developer/Xcode/DerivedData/[PROJECTNAME]-blabla/ArchiveIntermediates/[PROJECTNAME]/BuildProductsPath/Release-iphoneos/../three20/Three20Core: No such file or directory
The path "/[PROJECTNAME]/BuildProductsPath/three20/"
really doesn't exists, but this path exists: "/[PROJECTNAME]/three20/"
What can I do?
Configuration that works both for build and archive in Xcode4.
https://github.com/pazustep/three20/commit/4a9aad4eb90a6962dd729d245f9293a7cc0d7f36
src/common/Configurations/Paths.xcconfig
src/scripts/Protect.command
three20.info: Xcode 4 Transition Guide
http://three20.info/article/2011-03-10-Xcode4-Support
Another thing that could throw off the build process is using a scheme name that contains spaces.
XCode won't stop you from doing it, but if you use a name like "Ad Hoc" for your scheme, you'll end up the same errors:
Open the file
/src/common/Configurations/Paths.xcconfig
old code:
new code:
So, I still have 7 errors, but I can create the archive...
I had to go under Project Info > Build (tab) and add the following to the header search path:
This path may be specific to my project, but there it is in case it works for someone else.
The Three20 documentation did not solve this issue for me (unfortunately...). Eventually what worked for me was a mix of a few solutions. There is a difference between "Archive" and "Build for Archiving" (or build for run) and using these steps I have both of them working with no build issues:
You will need to change the scripts as Manni mentioned, set the "Skip Install" flag for each Three20 project linked to your project tree and add the following paths to your project's "Header search paths":
"$(BUILT_PRODUCTS_DIR)/../three20" "$(BUILT_PRODUCTS_DIR)/../../three20"
this will get you to work with the Build option. When you want to perform the archive action, then you will also need to change the "Locations" preference in Xcode as featherless mentioned above.
I documented these steps in this post.