(no title)
grlass | 4 years ago
Same colleague had some vocal criticism of `gdb` as a debugging tool, and the state of Linux-based debugging tools as a whole, with claims that "Borland's were much better, and Visual Studio (not VS Code) being one of the few development environments with a quality debugger".
I'm not sure how fair that assessment is, I've found `gdb` to be a helpful tool, though I've never used Visual Studio.
nrdvana|4 years ago
Reitet00|4 years ago
__d|4 years ago
gdb is a fine tool, but I think the VS debugger is reasonably described as "next level".
Many people don't know about Microsoft's other debugger, WinDbg. It's actually more capable than the VS debugger, but the UI is closer to that of gdb.
grlass|4 years ago
It feels like Linux debugging is stuck in a viscous cycle, since few people are putting the capital into a decent debugger UI, and thus few people are using debugging UIs (and thus using printf debugging, or gdb CLI). Folk might not realise how much better it could be.
jiggawatts|4 years ago
I cry a little on the inside when I see developers using Visual Studio and resorting to printf statements (or the equivalent) because they’ve never even tried to use the debugger, ever.