Post #2158451
2026-04-29 22:10 UTC
@thakis I think never before! I am so accustomed to debuggers never working that I don’t use them often, and then Mac makes everything worse by lldb being extra clunky. But also most of my emulator bugs of the past years have been bugs in my emulation, which is one level removed from the system debugger (until now!)
Replies (1)
-
@evmar@inuh.net 2026-04-29 22:58
@thakis Thinking about it more: also I've mostly written Rust the last few years and Rust is a lot worse than C++ in a debugger. E.g. you can't evaluate any complex expressions, and even evaluating a reference like "foo.bar.baz" in Rust you have to manually change to "foo.bar->baz" depending on whether any of the intermediate components are references or not.