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", "name": "Attach to a running VM instance",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceRoot}/kernel.fsys", "program": "${workspaceFolder}/kernel.fsys",
"cwd": "${workspaceRoot}", "cwd": "${workspaceFolder}",
"args": [], "args": [],
"targetArchitecture": "x64", "targetArchitecture": "x64",
"MIMode": "gdb", "MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb", "miDebuggerPath": "/usr/bin/gdb",
"miDebuggerArgs": "", "miDebuggerArgs": "",
"externalConsole": false, "externalConsole": false,
"additionalSOLibSearchPath": "${workspaceRoot}", "additionalSOLibSearchPath": "${workspaceFolder}",
"customLaunchSetupCommands": [ "customLaunchSetupCommands": [
{ {
"text": "target remote localhost:1234", "text": "target remote localhost:1234",
@ -31,7 +31,7 @@
"description": "Make breakpoint pending on future shared library load." "description": "Make breakpoint pending on future shared library load."
}, },
{ {
"text": "file ${workspaceRoot}/kernel.fsys", "text": "file ${workspaceFolder}/kernel.fsys",
"description": "Load binary." "description": "Load binary."
}, },
] ]