RejectedSoftware Forums

Sign up

Defining path for temporary .dub directory

Hi,

I want to define the path for the temporary files
(directory .dub).
I have following use case:
To speed up the development cycles I created a RAM disk in windows. My source files are located on my SSD but the executables and lib files should be created on the RAM disk.

Is there any chance to specificy the temp directory .dub?

Kind regards
André

Re: Defining path for temporary .dub directory

Am 18.05.2015 um 18:05 schrieb Andre:

Hi,

I want to define the path for the temporary files
(directory .dub).
I have following use case:
To speed up the development cycles I created a RAM disk in windows. My source files are located on my SSD but the executables and lib files should be created on the RAM disk.

Is there any chance to specificy the temp directory .dub?

Kind regards
André

Right now the best bet would be to create a soft-link (ln -s, or
mklink on windows). I haven't tried this, but in theory it should work.

Re: Defining path for temporary .dub directory

On Tue, 19 May 2015 17:29:49 +0200, Sönke Ludwig wrote:

Am 18.05.2015 um 18:05 schrieb Andre:

Hi,

I want to define the path for the temporary files
(directory .dub).
I have following use case:
To speed up the development cycles I created a RAM disk in windows. My source files are located on my SSD but the executables and lib files should be created on the RAM disk.

Is there any chance to specificy the temp directory .dub?

Kind regards
André

Right now the best bet would be to create a soft-link (ln -s, or
mklink on windows). I haven't tried this, but in theory it should work.

Nice;)
Thanks a lot. It works fine.

Kind regards
André