www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - No -v or -deps for gdc?

reply Atila Neves <atila.neves gmail.com> writes:
gdmd supports those options but gdc doesn't. Is that likely to 
always be the case?

Atila
Sep 15 2015
parent reply Johannes Pfau <nospam example.com> writes:
Am Tue, 15 Sep 2015 12:19:34 +0000
schrieb Atila Neves <atila.neves gmail.com>:

 gdmd supports those options but gdc doesn't. Is that likely to 
 always be the case?
 
 Atila
gdmd is just a wrapper around gdc. If something is supported by gdmd it must also be supported by gdc (the exact switch names might differ). See: https://github.com/D-Programming-GDC/GDMD/blob/master/dmd-script Seems like -v maps to -fd-verbose and -deps to -fdeps.
Sep 15 2015
parent Atila Neves <atila.neves gmail.com> writes:
On Tuesday, 15 September 2015 at 18:12:56 UTC, Johannes Pfau 
wrote:
 Am Tue, 15 Sep 2015 12:19:34 +0000
 schrieb Atila Neves <atila.neves gmail.com>:

 gdmd supports those options but gdc doesn't. Is that likely to 
 always be the case?
 
 Atila
gdmd is just a wrapper around gdc. If something is supported by gdmd it must also be supported by gdc (the exact switch names might differ). See: https://github.com/D-Programming-GDC/GDMD/blob/master/dmd-script Seems like -v maps to -fd-verbose and -deps to -fdeps.
Ah cool, thanks! Atila
Sep 16 2015