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 ?
+1
A:
It sounds like you're using the /E switch which prints the source to the std output after it's run through the preprocessor.
phoebus
2009-09-21 10:16:14
no, I am not. I just use cl /c /nologo foo.c
David Cournapeau
2009-09-21 11:00:19
+4
A:
There's no way to suppress that message with a switch (see also this thread).
gix
2009-09-21 10:20:52
I was afraid this was not possible. Thanks for the confirmation
David Cournapeau
2009-09-21 11:00:55