Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode derived data location

Tags:

xcode

ios

Xcode keeps writing derived data to the project folder even though its set to default in the xcode project settings, its there any way to force this other than the project settings?

like image 263
DavidM Avatar asked Dec 07 '12 11:12

DavidM


People also ask

Where is derived data folder Xcode?

DerivedData is a folder located in ~/Library/Developer/Xcode/DerivedData by default. It's the location where Xcode stores all kinds of intermediate build results, generated indexes, etc. DerivedData location can be configured in Xcode preferences (Locations tab).

Where is the derived data folder on Mac?

You'll find your derived data folder in your macOS user library. To find your derived data folder, open a new Finder window. In the Finder menu bar, select Go ▸ Go to Folder…. Click Go to change the Finder window's path to DerivedData.

Should I delete derived data Xcode?

Xcode can often do some strange things that causes build problems etc. One of the go to methods to try and fix these issues is to delete derived data.


1 Answers

By default Xcode stores the derived data for all projects in a single shared folder under your home directory at the following location:

~/Library/Developer/Xcode/DerivedData 

Update:

From Xcode 6, you can access or change derived data location from Preferences -> Locations Tab

enter image description here

like image 78
DD_ Avatar answered Oct 23 '22 19:10

DD_