I have problems with setting up/locating my output files in XCode4 (beta 5). They are placed somewhere in ~/Library/Developer/ugly_path/.... I can't even select "show in finder" on my products. It is the same for a simple C project, Foundation tool and even Cocoa bundle. A Debugging works fine.

Could you please point me out where and how to set up / build output directories? (I know it sounds dumb, I've been coding in XCode3 for months, but I can't figure it out in XCode4 beta).

Thanks a lot.

link|improve this question
feedback

7 Answers

up vote 161 down vote accepted

From the Xcode menu on top, click preferences, select the locations tab, look at the build location option.

You have 2 options:

  1. Place build products in derived data location (recommended)
  2. Place build products in locations specified by targets

Does anyone know why does Xcode 4 recommend using the first option?

link|improve this answer
Thanks, that saved my day. – kubbing Nov 27 '10 at 10:34
1  
Thanks, that was a pain! – Khattab Mar 19 '11 at 3:18
18  
This answer explains why this change was made: stackoverflow.com/questions/5331270/… – toofah Mar 25 '11 at 22:48
1  
Thank you so much! Saved my whole project! Oh thanks! Vote UP! – Frederik Witte Apr 17 '11 at 11:13
@the Reverend thanks..... :) – Bhurudada Mar 31 at 7:26
feedback

If you have Xcode 4 Build Location setting set to "Place build products in derived data location (recommended), it should be located in ~/Library/Developer/Xcode/DerivedData. This directory will have your project in there as a directory, the project name will be appended with a bunch of generated letters so look carefully.

link|improve this answer
feedback

You can always find the build directory by looking in the build log viewer, and copying the path there into a terminal window.

I use this to analyze my iOS .app bundles before they get installed to make sure no stray files are being included.

link|improve this answer
So convient Apple. Not! – Zaph Sep 26 '11 at 17:21
feedback

If you build from command line, you can set output directory in the following way:

xcodebuild -workspace 'WORKSPACE_NAME.xcworkspace' -scheme 'SCHEME_NAME' -configuration 'Release' -sdk iphoneos5.1 CONFIGURATION_BUILD_DIR='OUTPUT_DIRECTORY'
link|improve this answer
feedback

You can configure the output directory using the CONFIGURATION_BUILD_DIR environment variable.

Source: http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/0-Introduction/introduction.html#//apple_ref/doc/uid/TP40003931-CH1-SW1

link|improve this answer
no that's unrelated to the derived location / legacy (per target) location behavior – Gregory Pakosz Mar 13 at 15:17
Yes it is. It works either way. From the documentation: "Directory path. Identifies the directory under which all build-related files for the active build configuration are placed." – Heath Borders Mar 13 at 19:16
nope. not with xcode4 it depends on Xcode > Preferences > Locations > Derived data setting as explained in the most voted answer. + the document you're referring to was last updated in 2010 – Gregory Pakosz Mar 13 at 19:40
I've actually used this setting to configure the build directory with xcode4 from xcodebuild. Give it a try. – Heath Borders Mar 13 at 21:18
well I've tried with Xcode 4.3.1 (from the IDE) and without changing the global setting, products are build somewhere in ~/Library/Developer/Xcode/DerivedData/ and not inside the directory I specify with CONFIGURATION_BUILD_DIR. If I want CONFIGURATION_BUILD_DIR to be honored, I have to switch Xcode derived data preferences to "Legacy" – Gregory Pakosz Mar 13 at 23:36
feedback

This was so annoying. Open your project, click on Target, Open Build Phases tab. Check your Copy Bundle Resources for any red items.

link|improve this answer
feedback

Keep derived data but use the DSTROOT to specify the destination.

Use DEPLOYMENT_LOCATION to force deployment.

Use the undocumented DWARF_DSYM_FOLDER_PATH to copy the dSYM over too.

This allows you to use derived data location from xcodebuild and not have to do wacky stuff to find the app.

xcodebuild -sdk "iphoneos" -workspace Foo.xcworkspace -scheme Foo -configuration "Debug" DEPLOYMENT_LOCATION=YES DSTROOT=tmp DWARF_DSYM_FOLDER_PATH=tmp build
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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