[Issue 20] internal compiler error: in expand_expr_real_1, at expr.c:9301

2012-10-25 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=20 Alex Rønne Petersen changed: What|Removed |Added CC||a...@lycus.org --- Comment #2 from

[Issue 20] internal compiler error: in expand_expr_real_1, at expr.c:9301

2012-10-25 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=20 --- Comment #1 from lt.infiltra...@gmail.com 2012-10-26 01:41:55 UTC --- Created attachment 12 --> http://gdcproject.org/bugzilla/attachment.cgi?id=12 gdc command and failure -- Configure issuemail: http://gdcproject.org/bugzilla/userprefs.cgi?

[Issue 20] New: internal compiler error: in expand_expr_real_1, at expr.c:9301

2012-10-25 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=20 Bug #: 20 Summary: internal compiler error: in expand_expr_real_1, at expr.c:9301 Classification: Unclassified Product: GDC Version: development Platform: x86_64

Re: Too many open files

2012-10-25 Thread Joseph Rushton Wakeling
On 10/25/2012 05:44 PM, Iain Buclaw wrote: Anyway... this would be a frontend-related bug, probably attributed with the old version of D you are using there. Most likely so. Unfortunately I'm still struggling to compile gdc-4.7 so cannot confirm :-( I probably should have posted here, but t

[Issue 15] internal compiler error: in expand_expr_real_1, at expr.c:9266

2012-10-25 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=15 Iain Buclaw changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 18] callgraph error (?) when using -fdebug and sort!del(some_array)

2012-10-25 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=18 Iain Buclaw changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: Odd performance difference

2012-10-25 Thread H. S. Teoh
On Thu, Oct 25, 2012 at 10:46:47AM -0700, H. S. Teoh wrote: > Since compiling every source file I have in a single command causes GDC > to ICE, I decided to experiment with compiling the files in batches. > Turns out I can do it in two batches without crashing GDC: > > gdc ${first_seven_file

Odd performance difference

2012-10-25 Thread H. S. Teoh
Since compiling every source file I have in a single command causes GDC to ICE, I decided to experiment with compiling the files in batches. Turns out I can do it in two batches without crashing GDC: gdc ${first_seven_files} -o a.o gdc ${second_six_files} -o b.o gdc a.o b.o

Re: Too many open files

2012-10-25 Thread Iain Buclaw
On 25 October 2012 16:17, Joseph Rushton Wakeling wrote: > Hello all, > > I have some code which needs to read in data from a large number of files in > a directory. > > The basic data input code goes something like this: > > foreach(DirEntry e; dirEntries(...)) > { > auto f = file

Re: Too many open files

2012-10-25 Thread Iain Buclaw
On 25 October 2012 16:17, Joseph Rushton Wakeling wrote: > Hello all, > > I have some code which needs to read in data from a large number of files in > a directory. > > The basic data input code goes something like this: > > foreach(DirEntry e; dirEntries(...)) > { > auto f = file

Too many open files

2012-10-25 Thread Joseph Rushton Wakeling
Hello all, I have some code which needs to read in data from a large number of files in a directory. The basic data input code goes something like this: foreach(DirEntry e; dirEntries(...)) { auto f = file(e.name, "r"); // we input data from f. } This runs fine wi