I 've just downloaded Lazarus 2.26.
I want to use it with my application build on Lazarus 2.06.
Version 2.26 has a new debug (DWARF).
When I build my project, it's compile without errors. But when starting the application, It will not start end the IDE is still in Debug mode. Running the application without the IDE works fine.
So I looked with the old debugger (GDB). This one will not debugging on this piece of code.
function TDMConnections.DBConnection: TIBConnection;
begin
result := IBConnection1;
end;
I deleted the function and put all the connections to IBConnections1
Now I can debug and run my application with the IDE with GDB.
Actually I want the new debugger in Lazarus.
How do I do that.
Creating a new application with the new debugger runs normal.