|
|
|
|
|
by dsp_person
587 days ago
|
|
I've been writing C code a lot more like scripting after familiarizing with how easy it is to use gdb compared to jumping through hoops say in vscode to setup a new build target for every new C file I want to mess with. Just write `test_x.c`, `gcc -o test_x test_x.c -g`, and `gdb --args ./test_x --blah --blah` allows for much faster iteration on things. PLUS the gdb commands end up far easier and more powerful to probe things than mess with the GUI most of the time. |
|