Prevent cl.exe from printing the compiled source f

2019-06-15 02:30发布

I use the MS compiler from the command line (VS 2008), and whenever it compiles one source file, it prints the compiled source file. Is there a way to avoid this useless print ?

2条回答
Explosion°爆炸
2楼-- · 2019-06-15 02:38

It sounds like you're using the /E switch which prints the source to the std output after it's run through the preprocessor.

查看更多
何必那么认真
3楼-- · 2019-06-15 02:57

There's no way to suppress that message with a switch (see also this thread).

查看更多
登录 后发表回答