Thread overview
[Issue 4236] 'out of memory' error compiling on windows
Mar 17, 2021
RazvanN
Aug 15, 2022
RazvanN
Jan 06, 2023
Bastiaan Veelo
June 10, 2015
https://issues.dlang.org/show_bug.cgi?id=4236

Andrei Alexandrescu <andrei@erdani.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|unspecified                 |D2

--
March 17, 2021
https://issues.dlang.org/show_bug.cgi?id=4236

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |razvan.nitu1305@gmail.com

--- Comment #1 from RazvanN <razvan.nitu1305@gmail.com> ---
Is this issue still valid?

--
August 15, 2022
https://issues.dlang.org/show_bug.cgi?id=4236

RazvanN <razvan.nitu1305@gmail.com> changed:

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

--
January 06, 2023
https://issues.dlang.org/show_bug.cgi?id=4236

Bastiaan Veelo <Bastiaan@Veelo.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Bastiaan@Veelo.net

--- Comment #2 from Bastiaan Veelo <Bastiaan@Veelo.net> ---
No, this is no longer an issue.

Tested with v2.099.1 on Windows 10.

dmd mkdata.d
mkdata.exe > data.d
dmd -c data.d

-------------- mkdata.d ----------------------------------------------
import std.stdio, std.conv;

void main()
{
    writeln("module data;\n");
    write("const ubyte[] blob = [0");
    foreach (i; 1 .. 8_000_000)
        write(", ", (i % ubyte.max).to!string);
    writeln("];\n");
}

--