5 days ago
https://issues.dlang.org/show_bug.cgi?id=24863

Richard (Rikki) Andrew Cattermole <alphaglosined@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alphaglosined@gmail.com

--- Comment #1 from Richard (Rikki) Andrew Cattermole <alphaglosined@gmail.com> ---
This may not be an OOM situation.

I suspect the problem is that ``realloc`` cannot expand any further.

https://github.com/dlang/dmd/blob/master/compiler/src/dmd/common/outbuffer.d#L190

--
5 days ago
https://issues.dlang.org/show_bug.cgi?id=24863

zf <lfzamora81@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from zf <lfzamora81@gmail.com> ---
This has been resolved and was not an issue with DMD specifically but with the default system settings of OpenBSD itself.

The 'datasize' parameter(s) for a given login class must be set high enough as not to run out of memory:

https://man.openbsd.org/login.conf.5

By default, depending on the system memory, it may be set too low. Increasing the current and max values fixed the issue.

Resolving.

--