From ab6de4e43de049dd1309a724d49680f05de0a72f Mon Sep 17 00:00:00 2001 From: vincents Date: Fri, 19 Nov 2004 12:18:50 +0000 Subject: [PATCH] create debugger without console. git-svn-id: trunk@6268 - --- debugger/cmdlinedebugger.pp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/debugger/cmdlinedebugger.pp b/debugger/cmdlinedebugger.pp index 43151cefac..6bf4aa8eb3 100644 --- a/debugger/cmdlinedebugger.pp +++ b/debugger/cmdlinedebugger.pp @@ -216,7 +216,9 @@ begin then begin FDbgProcess := TProcess.Create(nil); FDbgProcess.CommandLine := ExternalDebugger + ' ' + AOptions; - FDbgProcess.Options:= [poUsePipes, {poNoConsole,} poStdErrToOutPut, poNewProcessGroup]; + // TODO: under win9x and winMe should be created with console, + // otherwise no break can be sent. + FDbgProcess.Options:= [poUsePipes, poNoConsole, poStdErrToOutPut, poNewProcessGroup]; FDbgProcess.ShowWindow := swoNone; FDbgProcess.Environment := DebuggerEnvironment; end; @@ -401,6 +403,9 @@ initialization end. { ============================================================================= $Log$ + Revision 1.38 2004/11/19 12:18:50 vincents + create debugger without console. + Revision 1.37 2004/11/02 23:25:02 marc * Introduced another method of interrupting gdb on win32