up vote 8 down vote favorite
4
share [g+] share [fb]

XCode 3.2.3 Beta does not allow building for below 3.2.

I opened a project that was made in an earlier XCode. For some reason, the base SDK is reported as missing even after changing it to 4.0. Other projects from earlier XCode do not have this issue.

What can I do?

link|improve this question

May be SDK path is not properly, try searching SDK in finder and set path in Xcode project. – Devara Gudda Jun 14 '10 at 4:11
@Devera - How so? – Moshe Jun 14 '10 at 4:12
1  
Editing the .pbxproj in your .xcodeproj might help. In the XCBuildConfiguration section there are values for SDKROOT. – Evadne Wu Jun 14 '10 at 4:21
@Evadne Wu - Any specific ideas? I just started looking into that. – Moshe Jun 14 '10 at 4:28
@Evadne Wu - Post as the answer, that did work! – Moshe Jun 14 '10 at 4:30
show 2 more comments
feedback

protected by Bill the Lizard Dec 6 '10 at 3:06

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.

4 Answers

up vote 12 down vote accepted

Happy to hear it worked!

Editing the .pbxproj in your .xcodeproj might help. In the XCBuildConfiguration section there are values for SDKROOT.

link|improve this answer
feedback

If you can't choose the SDK at the top left of x-code you have to first set the base SDK in the the project settings. Project -> Edit Project Settings. Then choose the "General" tab. At the bottom you can choose "Base SDK for all Configurations:"

link|improve this answer
Normally this would work. However, projects ported from XCode in the iOS 3.x SDK to the iOS 4 SDK may not show the base SDK option. In that case you will, like me, have to follow Evadne Wu's answer. – Moshe Jun 27 '10 at 20:15
thanks! I had same problem and this was the solution! +1 – David Menard Jul 9 '10 at 19:01
feedback

This question has more details on the situation: Install xCode 3.2.3 w/ iPhone SDK 4, get "Base SDK missing", can't see other SDKs

link|improve this answer
feedback

I found I had to edit the Base SDK setting for each of the different build configurations, then the error went away. You need to fix "Release", "Debug" and any others.

link|improve this answer
feedback

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