Delphi - 编译器出错时继续
在D2006中编译应用程序时遇到错误时是否有可能使编译器继续进行?我想知道它在应用程序中发现了多少错误。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。问题是,一旦编译器无法编译一个单元,它就无法编译其他很可能依赖于无法编译的单元的单元。这是因为单元的编译需要所有使用单元的 .dcu 文件。
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.