Reputation: 1763
I use a previous Xcode 3 project and built it successfully on the Mac SDK 10.6.
What I don't understand is that not any executable is generated :
Strangely, no executable is built.
Upvotes: 5
Views: 9115
Reputation:
Xcode 4 changes the default build location. It's no longer going into $(SRCROOT)/build
, but ~/Library/Xcode/DerivedData/...
where ...
is a project-specific folder. Right-click the executable in Xcode and choose "Show in Finder".
Upvotes: 7