How templates work (1)

tsbockman thomas.bockman at gmail.com
Fri May 29 22:33:29 UTC 2020


On Friday, 29 May 2020 at 22:31:54 UTC, tsbockman wrote:
> For anyone else having trouble with out-of-memory related 
> crashes on Linux, I recommend replacing dmd in your PATH with a 
> script like this to prevent the OS from crashing:
>
>     (using ulimit -v $MAX_MEMORY_IN_KB; /path/to/dmd $@)

Oops, that should be:

#! /bin/bash
(ulimit -v $MAX_MEMORY_IN_KB; /path/to/dmd $@)



More information about the Digitalmars-d mailing list