配合使用Rust的vscode调试控制台

时间:2020-11-04 15:44:41

标签: debugging visual-studio-code rust vscode-extensions lldb

我不确定我正在使用谁的控制台。但是,假设我有以下调试配置:

{
    "version": "0.2.0",
    "inputs": [
        ...
    ],
    "configurations": [
        {
            "type": "lldb",
            "request": "attach",
            "name": "Attach to...",
            "program": "${workspaceFolder}/src/lib/${input:pickPackage}/target/debug/${input:pickPackage}"
        }
    ]
}

我的程序正在cargo run -p ...的macOS终端中运行

vscode的调试器为我提供了lldb调试控制台

说,我在断点上,想尝试一下...

到目前为止,我尝试过防锈

script println!("{:?}", &t[op_end_index..])
  File "<input>", line 1
    println!("{:?}", &t[op_end_index..])
           ^
SyntaxError: invalid syntax
script &t[op_end_index..]
  File "<input>", line 1
    &t[op_end_index..]
    ^
SyntaxError: invalid syntax
script fn main () {println!("{:?}", &t[op_end_index..])}
  File "<input>", line 1
    fn main () {println!("{:?}", &t[op_end_index..])}
       ^
SyntaxError: invalid syntax

What I found in the lldb dos

script print "Here is some text"
  File "<input>", line 1
    print "Here is some text"
          ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Here is some text")?

最后是错误提示:

script print ("Here is some text")
Here is some text

你好,但我如何达到我的实际范围?

我应该为此使用lldb的script命令吗?

我在那里的语法是什么?

更新

@ForceBru感谢您关于python的提示。

我正在与之互动的是vscode-lldb debugger api

在将https://github.com/vadimcn/vscode-lldb/blob/v1.6.0/MANUAL.md#rust-language-support中的script debugger.evaluate("/se t[0]")添加到我的配置中之后,看来我应该能够执行类似"sourceLanguages": ["rust"]的操作

但没有运气

script debugger.evaluate("/se t[0]")
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "/Users/anvlkv/.vscode/extensions/vadimcn.vscode-lldb-1.6.0/adapter/debugger.py", line 8, in evaluate
    value = codelldb.evaluate_in_context(expr, True, exec_context)
  File "/Users/anvlkv/.vscode/extensions/vadimcn.vscode-lldb-1.6.0/adapter/codelldb.py", line 276, in evaluate_in_context
    return eval(code, eval_globals, eval_locals)
  File "<string>", line 1
    /se t[0]
    ^
SyntaxError: invalid syntax

我仍然在使用python

script debugger.evaluate("locals().keys()")
dict_keys([])

1 个答案:

答案 0 :(得分:0)

正如某人评论的那样,您的配置似乎不正确,并且正在尝试将您的源代码调试为Python。获得正确配置的最简单方法是使用提供的模板。就您而言,您可能可以跳到此答案的末尾,并使用其中一个“附加”配置文件,但其他配置文件可能对其他人有用。

在调试面板中,有一个下拉列表:

VS Code LLDB: add configuration

如果选择“添加配置...”,则可以选择要添加的模板:

configuration templates

选择“ LLDB:调试货物输出”会将其添加到您的launch.json文件中:

{
    "type": "lldb",
    "request": "launch",
    "name": "Cargo launch",
    "cargo": {
        "args": [
            "build",
            "--lib"
        ]
    },
    "program": "${cargo:program}",
    "args": []
},

如果您的箱子是二进制文件,则需要将--lib更改为--bin并指定要运行的二进制文件:

{
    "type": "lldb",
    "request": "launch",
    "name": "Cargo launch",
    "cargo": {
        "args": [
            "build",
            "--bin=foo"
        ]
    },
    "program": "${cargo:program}",
    "args": []
},

对于测试,您可以选择“ LLDB:调试货物测试”。它将生成如下内容:

{
    "type": "lldb",
    "request": "launch",
    "name": "Cargo test",
    "cargo": {
        "args": [
            "test",
            "--no-run",
            "--lib"
        ]
    },
    "program": "${cargo:program}",
    "args": []
},

您可能想要删除--lib参数,以便它将运行项目中的所有测试。您可以通过将其添加为尾随参数来对其进行过滤,以仅调试您感兴趣的测试。例如只运行名称包含“ foo”的测试:

{
    "type": "lldb",
    "request": "launch",
    "name": "Cargo test",
    "cargo": {
        "args": [
            "test",
            "--no-run",
            "--lib"
        ]
    },
    "program": "${cargo:program}",
    "args": ["foo"]
},

要调试已运行的程序,可以使用模板“ LLDB:按名称附加”,该模板将生成:

{
    "type": "lldb",
    "request": "attach",
    "name": "Attach",
    "program": "${workspaceFolder}/foo"
},

或“ LLDB:按PID附加”:

{
    "type": "lldb",
    "request": "attach",
    "name": "Attach",
    "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},

这将为您提供正在运行的进程的可过滤列表,因此您可以选择要调试的进程。

对于这后两种配置,您可能会遇到权限问题(至少在Linux上,但在Mac上也可能)。您可以通过以其他用户身份运行可执行文件或提升VS Code的权限(例如,以sudo开头)来解决此问题。