Update vscode config

This commit is contained in:
Alex 2023-05-21 06:05:56 +03:00
parent e8162bc3cb
commit 5cb799df89
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

8
.vscode/launch.json vendored
View File

@ -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."
},
]