Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@arcsector No, and that's because I was too lazy. I don't like to wade through point-n-click adventures just to find a segfault. Just the raw CLI, gimme a stack trace, I can switch through the stack frames, and that's all I need to locate a bug.
-
brother I am not gonna lie, I always had this idea that if someone was using the GDB on cli it was you. How would you normally debug your work on C?
-
@AleCx04 I usually don't have such issues because I don't even trust myself when coding. With foreign code, GDB is my lazy option when I don't want to get into the code base and I've exhausted compiler warnings and CppCheck . ^^
For really complicated shit in my own projects, I rely on the state between being awake and sleeping where I half-dream to the point that I see where things go haywire.
Since management in my company is pretty backwards and would never understand that, I instead browse the internet during the day until I can go home and then lie down to do the actual work. -
Parzi86634yGod I really wanna see x86 remote debuggers that are as good as BGB's debugger. For fucks sake, a Gameboy debugger puts most to shame...
Related Rants
I love GDB on CLI!
I'm using an OSS tool for multi-threaded testing stuff, and it's nice but segfaulted after 30 minutes.
I was too lazy to set up an IDE project and click through tons of stupid shit, so I just compiled the tool with debug symbols, fired up GDB on CLI, let it run until a crash, got a strack trace and quickly found the problem.
I sent a bug analysis to the author, plus a patch which got accepted, done.
random
gdb
cli