Explorar o código

* Fix for gdb66/mingw (general?) program reset issue. Instructs GDB to turn confirmation off. Mantis 0011968

git-svn-id: trunk@13158 -
marco %!s(int64=16) %!d(string=hai) anos
pai
achega
c0aa309cde
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      packages/gdbint/src/gdbint.pp

+ 3 - 0
packages/gdbint/src/gdbint.pp

@@ -2100,6 +2100,9 @@ begin
   gdb_command('set print vtbl on');
   gdb_command('set print object on');
   gdb_command('set print null-stop');
+  {$ifdef USE_MINGW_GDB}  // maybe this also should be done for newer cygwin gdbs.
+  gdb_command('set confirm off');
+  {$endif}
 end;