Xcode build, but do not create executables

I am using the previous Xcode 3 project and successfully built it on the Mac SDK 10.6.

I do not understand that no executable is being generated:

  • I look at the circuit and checked Run,
  • path to the executable file I selected the previous executable file to run and then deleted this old executable file to make sure that a new one will be created.

Strange, no executable was created.

+4
source share
1 answer

Xcode 4 changes the default assembly location. It is no longer included in $(SRCROOT)/build , but ~/Library/Xcode/DerivedData/... where ... is the project-specific folder. Right-click the executable in Xcode and select Show In Finder.

+7
source

Source: https://habr.com/ru/post/1344245/


All Articles