Change path of DerivedData Permanently deleted user Created October 28, 2011 14:50 Hi how can I change the path of DerivedData AppCode uses, so that I can compile into a ramdisk?
Currently there's no such option. Please create an issue in the tracker and describe your use case.
Thank you.
Thanks for the answer. I created an issue:
http://youtrack.jetbrains.net/issue/OC-2334?projectKey=OC
btw.. you can mount a ramdisk in MacOS anytime, and set the mountpoint to
$HOME/Library/Caches/appCode10/DerivedData/
(create some .sh script, and optionally set a LoginHook for it)
#!/bin/sh
NUMSECTORS=128000
mydev=`hdid -nomount ram://$NUMSECTORS`
newfs_hfs $mydev
mkdir /tmp/mymount
mount -t hfs $mydev $HOME/Library/Caches/appCode10/DerivedData