vote up 1 vote down star

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 ?

flag

67% accept rate

2 Answers

vote up 2 vote down check

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

link|flag
I was afraid this was not possible. Thanks for the confirmation – David Cournapeau Sep 21 at 11:00
vote up 1 vote down

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

link|flag
no, I am not. I just use cl /c /nologo foo.c – David Cournapeau Sep 21 at 11:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.