Open maxmarsc opened 5 days ago
I just tested with gdb-14.2 built from sources and the issues it the same
Thank you for reporting this issue. We’ll let you know if we need more information to investigate it. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated.
Environment
Bug Summary and Steps to Reproduce
Bug Summary: When selecting a new frame using the VSCode interface, it does not always update the frame scope from within GDB.
Steps to reproduce:
void bar() { std::cout << "bar" << std::endl; }
int main() { bar(); return 0; }
-exec info frame