run program support under linux

This commit is contained in:
Vadim Lopatin 2015-12-09 14:43:46 +03:00
parent 3fb4dce4a1
commit 78a78ec070
2 changed files with 6 additions and 2 deletions

View File

@ -213,7 +213,6 @@
<Compile Include="src\dlangide\ui\settings.d" />
<Compile Include="src\dlangide\ui\wspanel.d" />
<Compile Include="src\dlangide\ui\newfile.d" />
<Compile Include="src\dlangide\ui\newproject.d" />
<Compile Include="src\dlangide\workspace\project.d" />
<Compile Include="src\dlangide\workspace\workspace.d" />
<Compile Include="src\ddebug\common\debugger.d" />

View File

@ -80,7 +80,6 @@ class ProgramExecutionNoDebug : Thread, ProgramExecution {
// external console support
if (!_externalConsole.empty) {
string cmdline = escapeShellCommand(params);
cmdline = escapeShellFileName(cmdline);
params.length = 0;
params ~= _externalConsole;
params ~= "-e";
@ -90,6 +89,12 @@ class ProgramExecutionNoDebug : Thread, ProgramExecution {
File newstdin;
File newstdout;
File newstderr;
version (Windows) {
} else {
newstdin = stdin;
newstdout = stdout;
newstderr = stderr;
}
try {
_pid = spawnProcess(params, newstdin, newstdout, newstderr, null, Config.none, _workDir);
} catch (Exception e) {