Change path of DerivedData

Hi how can I change the path of DerivedData AppCode uses, so that I can compile into a ramdisk?

0

Currently there's no such option. Please create an issue in the tracker and describe your use case.
Thank you.

0
Avatar
Permanently deleted user

Thanks for the answer. I created an issue:
http://youtrack.jetbrains.net/issue/OC-2334?projectKey=OC

0
Avatar
Permanently deleted user

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

0

请先登录再写评论。