dlewin
dlewin

Reputation: 1763

Xcode build but don't create Executable

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

Answers (1)

user23743
user23743

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

Related Questions