RBA
RBA

Reputation: 12584

Delphi - compiler continue on error

Is there any possibility to make compiler continue when errors are encountered during the compilation an application in D2006? I want to know how many errors it finds on an application.

Upvotes: 1

Views: 350

Answers (1)

David Heffernan
David Heffernan

Reputation: 612794

No there is not. The problem is that once the compiler can't compile one unit, it's in no position to compile the other ones that, more than likely, depend on the unit that could not be compiled. This is because compilation of a unit requires a .dcu file for all of the used units.

Upvotes: 6

Related Questions