Re: Limit number of compiler error messages

2012-05-22 Thread Don Clugston
On 20/05/12 00:38, cal wrote: Is there a way to limit the dmd compiler to outputting just the first few errors it comes across? No, but the intention of DMD is to generate only one error per bug in your code. If you are seeing a large number of useless errors, please report it in bugzilla.

Re: Limit number of compiler error messages

2012-05-22 Thread Robert Clipsham
On 19/05/2012 23:38, cal wrote: Is there a way to limit the dmd compiler to outputting just the first few errors it comes across? As Don said, if there are any useless error messages it is a bug, and needs to be reported at: http://d.puremagic.com/issues/ This said, if you're on a

Re: Limit number of compiler error messages

2012-05-22 Thread Andrej Mitrovic
On 5/20/12, cal callumena...@gmail.com wrote: Is there a way to limit the dmd compiler to outputting just the first few errors it comes across? If you're getting a ton of unrelated errors it might be related to this: http://d.puremagic.com/issues/show_bug.cgi?id=8082 I regularly get hundreds

Re: Limit number of compiler error messages

2012-05-22 Thread cal
On Tuesday, 22 May 2012 at 09:50:41 UTC, Robert Clipsham wrote: As Don said, if there are any useless error messages it is a bug, and needs to be reported at: http://d.puremagic.com/issues/ This said, if you're on a non-Windows platform, you can use the following: my build command 21 |

Re: Limit number of compiler error messages

2012-05-22 Thread Dmitry Olshansky
On 22.05.2012 21:36, cal wrote: On Tuesday, 22 May 2012 at 09:50:41 UTC, Robert Clipsham wrote: As Don said, if there are any useless error messages it is a bug, and needs to be reported at: http://d.puremagic.com/issues/ This said, if you're on a non-Windows platform, you can use the

Re: druntime investigation troubles

2012-05-22 Thread Denis Shelomovskij
21.05.2012 2:13, Alex Rønne Petersen написал: On 20-05-2012 22:13, Jacob Carlborg wrote: On 2012-05-20 18:25, Alex Rønne Petersen wrote: Seems like I misunderstood what you were saying. Right, the C runtime on *Windows* is closed source. But, I don't know why you think that function is called

Re: druntime investigation troubles

2012-05-22 Thread Steven Schveighoffer
On Tue, 22 May 2012 15:16:30 -0400, Denis Shelomovskij verylonglogin@gmail.com wrote: 21.05.2012 2:13, Alex Rønne Petersen написал: On 20-05-2012 22:13, Jacob Carlborg wrote: On 2012-05-20 18:25, Alex Rønne Petersen wrote: Seems like I misunderstood what you were saying. Right, the C

Re: Limit number of compiler error messages

2012-05-22 Thread cal
On Tuesday, 22 May 2012 at 17:47:18 UTC, Dmitry Olshansky wrote: Check both stdout stderr. There is something funny with the way they are setup on Windows. Ahh... on my home laptop, it must go to stderr, on my work laptop, stdout. Thanks!