Re: How can I make DMD stop on the first fatal error? (-Wfatal-errors)

2020-07-07 Thread Jacob Carlborg via Digitalmars-d-learn

On Wednesday, 8 July 2020 at 00:54:40 UTC, Marcone wrote:
How can I make DMD stop on the first fatal error like 
-Wfatal-errors on C++?


With the `-verrors=1` flag. You can specify exactly how many 
errors the compiler should emit before halting the compilation. 
Specify `0` for unlimited.


--
/Jacob Carlborg


How can I make DMD stop on the first fatal error? (-Wfatal-errors)

2020-07-07 Thread Marcone via Digitalmars-d-learn
How can I make DMD stop on the first fatal error like 
-Wfatal-errors on C++?