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.OnReadData := @asyncprocOutput;
|
||||||
dmdproc.OnTerminate:= @asyncprocTerminate;
|
dmdproc.OnTerminate:= @asyncprocTerminate;
|
||||||
dmdproc.Options := [poUsePipes, poStderrToOutPut];
|
dmdproc.Options := [poUsePipes, poStderrToOutPut];
|
||||||
case fRunnableCompiler of
|
case fRunnablesOptions.compiler of
|
||||||
dmd: dmdProc.Executable:='dmd' + exeExt;
|
dmd: dmdProc.Executable :='dmd' + exeExt;
|
||||||
ldc: dmdProc.Executable:='ldmd2' + exeExt;
|
ldc: dmdProc.Executable :='ldmd2' + exeExt;
|
||||||
gdc: dmdProc.Executable:='gdmd' + exeExt;
|
gdc: dmdProc.Executable :='gdmd' + exeExt;
|
||||||
end;
|
end;
|
||||||
dmdproc.Parameters.Add(fDoc.fileName);
|
dmdproc.Parameters.Add(fDoc.fileName);
|
||||||
if not asObj then
|
if not asObj then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue