Merge pull request #4032 from youknowone/debugger

add cargo args to debugger settings
This commit is contained in:
Jeong YunWon
2022-08-10 05:31:29 +09:00
committed by GitHub

6
.vscode/launch.json vendored
View File

@@ -8,6 +8,12 @@
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rustpython'",
"cargo": {
"args": [
"build",
"--package=rustpython"
],
},
"preLaunchTask": "Build RustPython Debug",
"program": "target/debug/rustpython",
"args": [],