Newbie with Lazarus but long time Delphi user.
Made a very simple app, one button and onclick-event with code:
procedure TForm1.Button1Click(Sender: TObject);
var
i : integer;
begin
i := 0;
i := i + 1;
end;
Would like to use breakpoints to pinpoint behavior and opened
Environment--> Options--> Debugger and marked GNU debugger(gdb).
Added a breakpoint at 'i := 0';
The app stopped immediately with:
Project project1.exe raised exception class 'External: SIGSEV'
How should one do to be able to use breakpoints?
Regards
stab
