From 5cb799df895a66dcaf6177a27a33582e9ffcd4e0 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 21 May 2023 06:05:56 +0300 Subject: [PATCH] Update vscode config --- .vscode/launch.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 80f2cb1..b9f9492 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,15 +5,15 @@ "name": "Attach to a running VM instance", "type": "cppdbg", "request": "launch", - "program": "${workspaceRoot}/kernel.fsys", - "cwd": "${workspaceRoot}", + "program": "${workspaceFolder}/kernel.fsys", + "cwd": "${workspaceFolder}", "args": [], "targetArchitecture": "x64", "MIMode": "gdb", "miDebuggerPath": "/usr/bin/gdb", "miDebuggerArgs": "", "externalConsole": false, - "additionalSOLibSearchPath": "${workspaceRoot}", + "additionalSOLibSearchPath": "${workspaceFolder}", "customLaunchSetupCommands": [ { "text": "target remote localhost:1234", @@ -31,7 +31,7 @@ "description": "Make breakpoint pending on future shared library load." }, { - "text": "file ${workspaceRoot}/kernel.fsys", + "text": "file ${workspaceFolder}/kernel.fsys", "description": "Load binary." }, ]