MIDL 导入关键字生成大量编译器输出
.idl 文件中的每次导入都会生成以下输出:
64 位处理 file.idl
因此,对于每个处理的 idl 文件,我都有两页输出。有什么办法可以减少这次洪水吗?对我来说理想的是 c++ 编译器所做的相同 - 如果没有警告或错误,则只有一行带有输入文件名的输出。
我尝试过 /nologo 和 /W0 开关,但没有帮助。有什么想法吗?
Each import in .idl file generate following output:
64 bit Processing file.idl
Because of that I have two pages of output for every idl file processed. Is there any way to reduce this flood? Ideal for me is that same what c++ compiler do - only one line of output with input file name if there was no warnings or errors.
I have tried /nologo and /W0 switches, but it didn't helped. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,这些 printf 行是无条件的 - 它们总是被打印出来。
Unfortunately those printf lines are unconditional - they are always printed out.