Re: Error: out of memory

2018-01-10 Thread Paolo Invernizzi via Digitalmars-d-learn
On Wednesday, 10 January 2018 at 19:21:21 UTC, Adam D. Ruppe wrote: On Wednesday, 10 January 2018 at 19:15:00 UTC, Anonymouse wrote: I don't see a 64 bit release though... might have to try to build it yourself from source using visual studio. It's a long time I don't understand why there's

Re: Error: out of memory

2018-01-10 Thread H. S. Teoh via Digitalmars-d-learn
On Wed, Jan 10, 2018 at 07:21:21PM +, Adam D. Ruppe via Digitalmars-d-learn wrote: [...] > (and ugh dmd REALLY needs to get its memory consumption under control! > maybe just enabling the GC would help sometimes.) Yeah, no kidding! Recently I also ran into trouble with dmd's memory

Re: Error: out of memory

2018-01-10 Thread Anonymouse via Digitalmars-d-learn
On Wednesday, 10 January 2018 at 19:21:21 UTC, Adam D. Ruppe wrote: On Wednesday, 10 January 2018 at 19:15:00 UTC, Anonymouse wrote: I want to test it on a Windows 10 PC now but compilation with dmd (2.078.1) fails, both with --arch x86 and x86_64. LDC works, but it easily takes twice the time

Re: Error: out of memory

2018-01-10 Thread Anonymouse via Digitalmars-d-learn
On Wednesday, 10 January 2018 at 19:15:00 UTC, Anonymouse wrote: I've been building and testing my project on linux, juggling the ~5GB+ RAM needed to actually compile, but it's been working. I want to test it on a Windows 10 PC now but compilation with dmd (2.078.1) That's naturally

Re: Error: out of memory

2018-01-10 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 10 January 2018 at 19:15:00 UTC, Anonymouse wrote: I want to test it on a Windows 10 PC now but compilation with dmd (2.078.1) fails, both with --arch x86 and x86_64. LDC works, but it easily takes twice the time to build. In both cases, it is running a 32 bit dmd, just

Error: out of memory

2018-01-10 Thread Anonymouse via Digitalmars-d-learn
... [... deprecation spam ...] Error: out of memory dmd failed with exit code 1. The machine has 32 gigabytes of memory[1], so I don't believe that for a second. Any ideas? [1]: https://i.imgur.com/l5L6BIF.png

Re: Error: out of memory

2017-03-19 Thread Era Scarecrow via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple classes, but a lot of them. dmd uses about 2GB before it quits. It also only uses about 12% of cpu. I've noticed heavy use of

Re: Error: out of memory

2017-03-19 Thread Stefan Koch via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple classes, but a lot of them. dmd uses about 2GB before it quites. It also only uses about 12% of cpu. I have 16 GB total memory

Re: Error: out of memory

2017-03-19 Thread XavierAP via Digitalmars-d-learn
On Sunday, 19 March 2017 at 20:50:50 UTC, Gand Alf wrote: just use DMD with the -m64 parameter ;) then you should get a x64 DMD No, at least afaik, then you tell DMD to make a x64 exe, but DMD itself (this particular Windows version) is still a 32-bit exe.

Re: Error: out of memory

2017-03-19 Thread Gand Alf via Digitalmars-d-learn
On Sunday, 19 March 2017 at 20:49:02 UTC, Gand Alf wrote: On Saturday, 18 March 2017 at 23:24:40 UTC, kinke wrote: The Win64 LDC releases [https://github.com/ldc-developers/ldc/releases] feature a 64-bit compiler. just use DMD with the -m64 parameter ;) then you should get a x64 DMD

Re: Error: out of memory

2017-03-19 Thread Gand Alf via Digitalmars-d-learn
On Saturday, 18 March 2017 at 23:24:40 UTC, kinke wrote: The Win64 LDC releases [https://github.com/ldc-developers/ldc/releases] feature a 64-bit compiler. just use DMD with the -m64 parameter ;)

Re: Error: out of memory

2017-03-18 Thread kinke via Digitalmars-d-learn
The Win64 LDC releases [https://github.com/ldc-developers/ldc/releases] feature a 64-bit compiler.

Re: Error: out of memory

2017-03-18 Thread XavierAP via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: about 2GB before it quites. It also only uses about 12% of cpu. I have 16 GB total memory and about that free. Surely dmd could do a better job? Any way to get it to do such a thing like set the maximum amount of memory it can

Re: Error: out of memory

2017-03-18 Thread Basile B. via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:56:47 UTC, StarGrazer wrote: On Saturday, 18 March 2017 at 20:43:29 UTC, Basile B. wrote: On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple

Re: Error: out of memory

2017-03-18 Thread StarGrazer via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:43:29 UTC, Basile B. wrote: On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple classes, but a lot of them. dmd uses about 2GB before it quites. It

Re: Error: out of memory

2017-03-18 Thread Basile B. via Digitalmars-d-learn
On Saturday, 18 March 2017 at 20:39:20 UTC, StarGrazer wrote: I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple classes, but a lot of them. dmd uses about 2GB before it quites. It also only uses about 12% of cpu. I have 16 GB total memory

Error: out of memory

2017-03-18 Thread StarGrazer via Digitalmars-d-learn
I have some CTFE's and meta programming that cause dmd to run out of memory ;/ I am generating simple classes, but a lot of them. dmd uses about 2GB before it quites. It also only uses about 12% of cpu. I have 16 GB total memory and about that free. Surely dmd could do a better job? Any way

Re: Problem with dsss 0.78 rebuild error: out of memory

2011-06-07 Thread Trass3r
Both tools are dead.

Re: Problem with dsss 0.78 rebuild error: out of memory

2011-06-06 Thread armando sano
I am trying to compile dsss from source using dmd v2.051 and get the same problem when the dsss executable (v0.78) is being compiled by rebuild as of: ./rebuild/rebuild -full -Irebuild sss/main.d -ofdsss Linux here too. Has the problem been fixed? armando

Re: Problem with dsss 0.78 rebuild error: out of memory

2009-04-05 Thread Brian
On Wed, 28 Jan 2009 23:17:45 +, Spacen Jasset wrote: Has anyone encountered this problem before? ive noticed it happens often if i forget the closing } or ] on struct/ array literals ex: foo([1,2,3);

Re: Problem with dsss 0.78 rebuild error: out of memory

2009-04-03 Thread zkp0s
Spacen Jasset Wrote: Spacen Jasset wrote: I installing a new pc, and so have installed the latest tools specifically dss 0.78 I find that when compiling certain things, such as Derelict (dsss net install derelict) or the project I am working on, rebuild runs out of memory.

Re: Problem with dsss 0.78 rebuild error: out of memory

2009-01-29 Thread Spacen Jasset
Spacen Jasset wrote: Spacen Jasset wrote: Spacen Jasset wrote: I installing a new pc, and so have installed the latest tools specifically dss 0.78 I find that when compiling certain things, such as Derelict (dsss net install derelict) or the project I am working on, rebuild runs out of

Re: Problem with dsss 0.78 rebuild error: out of memory

2009-01-28 Thread Spacen Jasset
Spacen Jasset wrote: I installing a new pc, and so have installed the latest tools specifically dss 0.78 I find that when compiling certain things, such as Derelict (dsss net install derelict) or the project I am working on, rebuild runs out of memory. version 0.75 works ok, but 0.78 does

Re: Problem with dsss 0.78 rebuild error: out of memory

2009-01-28 Thread Spacen Jasset
Spacen Jasset wrote: Spacen Jasset wrote: I installing a new pc, and so have installed the latest tools specifically dss 0.78 I find that when compiling certain things, such as Derelict (dsss net install derelict) or the project I am working on, rebuild runs out of memory. version 0.75