【发布时间】:2022-12-02 05:42:32
【问题描述】:
Using the CodeLLDB extension, I\'m successfully debugging my C projects with lldb in VSCode.
The problem is that I cannot use lldb commands in the VSCode watch window.
For example, I\'m trying to print the first 10 items in an array using parray <COUNT> <EXPRESSION>.
This is what I obtain:
Is there a way to manipulate data using lldb?
For reference, with GDB you can do *myarr@10 in VSCode.
标签: c visual-studio-code debugging lldb