Thread overview
Visual D
Oct 24, 2021
Imperatorn
Oct 25, 2021
pilger
Oct 27, 2021
Rainer Schuetze
Nov 02, 2021
Imperatorn
October 24, 2021

How do I set which compiler is used when building a solution using Visual D?

I have multiple installed and it defaults to DMD.

Thanks

October 25, 2021

On Sunday, 24 October 2021 at 20:45:08 UTC, Imperatorn wrote:

>

How do I set which compiler is used when building a solution using Visual D?

"Enter the LDC installation path at the global Tools->Options->Projects and Solutions->Visual D Settings->LDC Directories option page. Then switch the "Compiler" option in the project configuration to "LDC"."

https://rainers.github.io/visuald/visuald/Installation.html

October 27, 2021
On 25/10/2021 14:53, pilger wrote:
> On Sunday, 24 October 2021 at 20:45:08 UTC, Imperatorn wrote:
>> How do I set which compiler is used when building a solution using Visual D?
> 
> "Enter the LDC installation path at the global Tools->Options->Projects and Solutions->Visual D Settings->LDC Directories option page. Then switch the "Compiler" option in the project configuration to "LDC"."
> 
> https://rainers.github.io/visuald/visuald/Installation.html
> 

In addition, the visuald projects (in contrast to the msbuild integration) allow specifying a different compiler executable when checking Compiler -> General -> Use other compiler.
November 02, 2021
On Wednesday, 27 October 2021 at 06:32:28 UTC, Rainer Schuetze wrote:
>
> On 25/10/2021 14:53, pilger wrote:
>> On Sunday, 24 October 2021 at 20:45:08 UTC, Imperatorn wrote:
>>> How do I set which compiler is used when building a solution using Visual D?
>> 
>> "Enter the LDC installation path at the global Tools->Options->Projects and Solutions->Visual D Settings->LDC Directories option page. Then switch the "Compiler" option in the project configuration to "LDC"."
>> 
>> https://rainers.github.io/visuald/visuald/Installation.html
>> 
>
> In addition, the visuald projects (in contrast to the msbuild integration) allow specifying a different compiler executable when checking Compiler -> General -> Use other compiler.

Thanks