Re: How suppress DMC File name and path showing after compile?

2021-05-06 Thread Marcone via Digitalmars-d-learn

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.


Re: How suppress DMC File name and path showing after compile?

2021-05-06 Thread Paul Backus via Digitalmars-d-learn

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


How suppress DMC File name and path showing after compile?

2021-05-06 Thread Marcone via Digitalmars-d-learn

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]