From 2132a9178af783aad0a4fe1923f77cf0adcafb02 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Wed, 10 Aug 2022 05:29:40 +0900 Subject: [PATCH] add cargo args to debugger settings --- .vscode/launch.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0f6763743..f0f4518df 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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": [],