Forráskód Böngészése

* use a gdb/mi command when clearing the exe in TDebugController.SetExe

git-svn-id: trunk@29722 -
nickysn 10 éve
szülő
commit
3deac03582
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      ide/fpdebug.pas

+ 4 - 0
ide/fpdebug.pas

@@ -703,7 +703,11 @@ begin
     begin
       HasExe:=false;
       reset_command:=true;
+{$ifdef GDBMI}
+      Command('-file-exec-and-symbols');
+{$else GDBMI}
       Command('file');
+{$endif GDBMI}
       reset_command:=false;
     end;
 end;