Re: Debugging Existing C++ Blocks with VS Code & GDB

2024-04-29 Thread Matt Clemons
Thanks Walter I realized that I had multiple gnuradio versions installed even though I thought I checked that. I completely wiped all my gnu radio files, pulled in the latest version 3.10.10.0 and built using the -DCMAKE_BUILD_TYPE=Debug, and now I can successfully debug the existing DTV code. The

Re: Debugging Existing C++ Blocks with VS Code & GDB

2024-04-23 Thread walter
Hi Matt, I'm not sure if this is an apples-to-apples situation, but your issue sounds exactly like something I've run into while abusing Python snippets. It was easy to avoid after understanding order-of-events for block creation. I suspect this is language-independent, and you can quickly cre

Debugging Existing C++ Blocks with VS Code & GDB

2024-04-23 Thread Matt Clemons
Hello, I've walked through tutorials and successfully set breakpoints and debugged OOT modules in Gnu Radio using the DCMAKE_BUILD_TYPE=Debug option. However, I'm trying to debug local changes I've made to existing gnuradio/dtv/ files and not having success. I've followed the steps in a similar q