www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - How suppress DMC File name and path showing after compile?

reply Marcone <marcone email.com> writes:
dmc Programa.cpp && Programa.exe

is showing this, but I want show only "Hello World!"


C:\Users\Usuario\Arquivos\Estudando\C\Programa.cpp: <--- I don't 
want DMC show this.
Hello World!
[Finished in 0.2s]
May 06 2021
parent reply Paul Backus <snarwin gmail.com> writes:
On Thursday, 6 May 2021 at 15:55:07 UTC, Marcone wrote:
 dmc Programa.cpp && Programa.exe

 is showing this, but I want show only "Hello World!"


 C:\Users\Usuario\Arquivos\Estudando\C\Programa.cpp: <--- I 
 don't want DMC show this.
 Hello World!
 [Finished in 0.2s]
Redirect the compiler's output to NUL: https://docs.microsoft.com/en-US/troubleshoot/cpp/redirecting-error-command-prompt
May 06 2021
parent Marcone <marcone email.com> writes:
On Thursday, 6 May 2021 at 16:00:03 UTC, Paul Backus wrote:
 On Thursday, 6 May 2021 at 15:55:07 UTC, Marcone wrote:
 dmc Programa.cpp && Programa.exe

 is showing this, but I want show only "Hello World!"


 C:\Users\Usuario\Arquivos\Estudando\C\Programa.cpp: <--- I 
 don't want DMC show this.
 Hello World!
 [Finished in 0.2s]
Redirect the compiler's output to NUL: https://docs.microsoft.com/en-US/troubleshoot/cpp/redirecting-error-command-prompt
I don't want redirect output to nul. Becouse errors in dmc is not redirected to stderror, so I will not see errors.
May 06 2021