<div dir="ltr">in the process of trying to debugĀ <a href="https://github.com/BlackEdder/ggplotd/issues/32">https://github.com/BlackEdder/ggplotd/issues/32</a> I would like to get a stracktrace and/or put a breakpoint before exception is thrown:<div><br></div><div><br></div><div>```</div><div>lldb $binary</div><div>r<br></div><div><div>(lldb)</div><div>Process 34168 resuming</div><div>object.Exception@../../../../.dub/packages/gtk-d-3.3.1/gtk-d/src/gtkc/Loader.d(123): Library load failed: libatk-1.0.dylib</div><div>Process 34168 exited with status = 1 (0x00000001)</div></div><div>```<br></div><div><br></div><div>Adding</div><div>```</div><div><div>b _d_throwc #does nothing<br></div></div><div>```</div><div><br></div><div>didn't help, also, it hasn't entered d main yet so `Runtime.traceHandler = &defaultTraceHandler;` isn't helpful.</div><div><br></div><div>The fix here was to lookup the code, find the corresponding mangled name location and add a breakpoint via `b _D4gtkc6Loader6Linker11loadLibraryFAyaZv` but is there a general fix?</div><div><br></div></div>