mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-16 20:22:26 +00:00
26 lines
659 B
JSON
26 lines
659 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Attach to QEMU (AArch64)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/target/aarch64-unknown-none/debug/nova",
|
|
"miDebuggerServerAddress": "localhost:1234",
|
|
"miDebuggerPath": "gdb",
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": true,
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "Run QEMU"
|
|
}
|
|
]
|
|
}
|