Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Lazarus - Windows - Debugger crashing on OpenDialog
Delphi, Lazarus, Free Pascal
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter
December 18, 2015 7:50 AM
Maybe a good tip for some of you running into this issue;
I was debugging an application in Lazarus 1.4.4 under Windows 10 (64bit) and found the debugger (dbg) to crash each time a OpenDialog was opened. After some searching (thank you Lazarus Wiki and Lazarus Forum!), I found this working solution:
(seems it's related to all the libraries that are being opened when you open a Open- or SaveDialog)
Go to "Tools" -> "Options" -> "Debugger" -> "General"
There we check "DisableLoadSymbolsForLibraries" (so it's set to TRUE).
I additional added the following to the "Debugger_Satrtup_options":
--eval-command="set auto-solib-add off"
Do not forget to click the "OK" button!