mirror of https://gitlab.com/basile.b/dexed.git
fixup for e3e42ead05
"compiler" setting from runnable options was not yet used.
This commit is contained in:
parent
310c5a51af
commit
2e603f605c
|
|
@ -2570,10 +2570,10 @@ begin
|
|||
dmdproc.OnReadData := @asyncprocOutput;
|
||||
dmdproc.OnTerminate:= @asyncprocTerminate;
|
||||
dmdproc.Options := [poUsePipes, poStderrToOutPut];
|
||||
case fRunnableCompiler of
|
||||
dmd: dmdProc.Executable:='dmd' + exeExt;
|
||||
ldc: dmdProc.Executable:='ldmd2' + exeExt;
|
||||
gdc: dmdProc.Executable:='gdmd' + exeExt;
|
||||
case fRunnablesOptions.compiler of
|
||||
dmd: dmdProc.Executable :='dmd' + exeExt;
|
||||
ldc: dmdProc.Executable :='ldmd2' + exeExt;
|
||||
gdc: dmdProc.Executable :='gdmd' + exeExt;
|
||||
end;
|
||||
dmdproc.Parameters.Add(fDoc.fileName);
|
||||
if not asObj then
|
||||
|
|
|
|||
Loading…
Reference in New Issue